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"