From 34c9661f1bcc1c3c4871a487fde5df28a0804a79 Mon Sep 17 00:00:00 2001 From: Spike Curtis Date: Wed, 15 Nov 2023 15:04:36 +0400 Subject: [PATCH] fix: disable flaky test TestSSH/RemoteForward_Unix_Signal (#10711) --- cli/ssh_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/ssh_test.go b/cli/ssh_test.go index 0f94fcce90..0abdfb4583 100644 --- a/cli/ssh_test.go +++ b/cli/ssh_test.go @@ -252,6 +252,7 @@ func TestSSH(t *testing.T) { // Test that we handle OS signals properly while remote forwarding, and don't just leave the TCP // socket hanging. t.Run("RemoteForward_Unix_Signal", func(t *testing.T) { + t.Skip("still flaky") if runtime.GOOS == "windows" { t.Skip("No unix sockets on windows") }