From c2eff20008ba4bab36078aa17ec9cc23dda59fb8 Mon Sep 17 00:00:00 2001 From: James Tucker Date: Thu, 21 Apr 2022 19:05:27 -0700 Subject: [PATCH] ssh/tailssh: avoid user ssh configuration in tests Signed-off-by: James Tucker --- ssh/tailssh/tailssh_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ssh/tailssh/tailssh_test.go b/ssh/tailssh/tailssh_test.go index f6feb8b18..93ed67f4e 100644 --- a/ssh/tailssh/tailssh_test.go +++ b/ssh/tailssh/tailssh_test.go @@ -265,6 +265,8 @@ func TestSSH(t *testing.T) { execSSH := func(args ...string) *exec.Cmd { cmd := exec.Command("ssh", + "-F", + "none", "-v", "-p", fmt.Sprint(port), "-o", "StrictHostKeyChecking=no",