Skip to content

Commit e9f87f1

Browse files
authored
chore: skip devtunnel test (#2336)
1 parent 02ad60f commit e9f87f1

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

coderd/devtunnel/tunnel_test.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,14 @@ import (
2222

2323
func TestTunnel(t *testing.T) {
2424
t.Parallel()
25-
if testing.Short() {
26-
t.Skip()
27-
return
28-
}
25+
26+
// It's not super useful for us to test this constantly, it'll only cause
27+
// flakes is the tunnel becomes unavailable for some reason.
28+
t.Skip()
29+
// if testing.Short() {
30+
// t.Skip()
31+
// return
32+
// }
2933

3034
ctx, cancelTun := context.WithCancel(context.Background())
3135
defer cancelTun()

0 commit comments

Comments
 (0)