From e9f87f12ecac968b3a85f856ebda1c510abac787 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Tue, 14 Jun 2022 20:32:40 -0500 Subject: [PATCH] chore: skip devtunnel test (#2336) --- 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 3ea8a63809..8ecde68f4f 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()