Skip to content

Commit 9b8e707

Browse files
chore: skip ssh exec-ing test on windows (coder#15146)
See coder/internal#117
1 parent d2c1562 commit 9b8e707

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cli/configssh_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"os"
1111
"os/exec"
1212
"path/filepath"
13+
"runtime"
1314
"strconv"
1415
"strings"
1516
"sync"
@@ -63,6 +64,10 @@ func sshConfigFileRead(t *testing.T, name string) string {
6364
func TestConfigSSH(t *testing.T) {
6465
t.Parallel()
6566

67+
if runtime.GOOS == "windows" {
68+
t.Skip("See coder/internal#117")
69+
}
70+
6671
const hostname = "test-coder."
6772
const expectedKey = "ConnectionAttempts"
6873
const removeKey = "ConnectTimeout"

0 commit comments

Comments
 (0)