From 9b8e707517f8455dba3fe190d150fe15172edc8e Mon Sep 17 00:00:00 2001 From: Ethan <39577870+ethanndickson@users.noreply.github.com> Date: Sun, 20 Oct 2024 23:17:20 -0500 Subject: [PATCH] chore: skip ssh exec-ing test on windows (#15146) See coder/internal#117 --- cli/configssh_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cli/configssh_test.go b/cli/configssh_test.go index 81eceb1b8c..feead1e279 100644 --- a/cli/configssh_test.go +++ b/cli/configssh_test.go @@ -10,6 +10,7 @@ import ( "os" "os/exec" "path/filepath" + "runtime" "strconv" "strings" "sync" @@ -63,6 +64,10 @@ func sshConfigFileRead(t *testing.T, name string) string { func TestConfigSSH(t *testing.T) { t.Parallel() + if runtime.GOOS == "windows" { + t.Skip("See coder/internal#117") + } + const hostname = "test-coder." const expectedKey = "ConnectionAttempts" const removeKey = "ConnectTimeout"