From d5bd0ca45608c7bec85291f670e92b2d0e3827e6 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Tue, 14 Jun 2022 20:18:23 -0500 Subject: [PATCH] chore: skip devtunnel test --- coderd/devtunnel/tunnel_test.go | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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()