From 7faf036433a06a122646c39a8c5cde411c37177b Mon Sep 17 00:00:00 2001 From: Spike Curtis Date: Wed, 15 Nov 2023 14:52:15 +0400 Subject: [PATCH] fix: disable flaky test TestSSH/RemoteForward_Unix_Signal --- cli/ssh_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/ssh_test.go b/cli/ssh_test.go index 0f94fcce90ebd..0abdfb4583ac2 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") }