diff --git a/coderd/devtunnel/tunnel_test.go b/coderd/devtunnel/tunnel_test.go index 3ea8a63809a0c..8ecde68f4fe60 100644 --- a/coderd/devtunnel/tunnel_test.go +++ b/coderd/devtunnel/tunnel_test.go @@ -22,10 +22,14 @@ import ( func TestTunnel(t *testing.T) { t.Parallel() - if testing.Short() { - t.Skip() - return - } + + // 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() + // if testing.Short() { + // t.Skip() + // return + // } ctx, cancelTun := context.WithCancel(context.Background()) defer cancelTun()