We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02ad60f commit e9f87f1Copy full SHA for e9f87f1
coderd/devtunnel/tunnel_test.go
@@ -22,10 +22,14 @@ import (
22
23
func TestTunnel(t *testing.T) {
24
t.Parallel()
25
- if testing.Short() {
26
- t.Skip()
27
- return
28
- }
+
+ // It's not super useful for us to test this constantly, it'll only cause
+ // flakes is the tunnel becomes unavailable for some reason.
+ t.Skip()
29
+ // if testing.Short() {
30
+ // t.Skip()
31
+ // return
32
+ // }
33
34
ctx, cancelTun := context.WithCancel(context.Background())
35
defer cancelTun()
0 commit comments