Skip to content

Commit 7c320b4

Browse files
committed
fix: skip test on windows
1 parent 0dfaade commit 7c320b4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cli/configssh_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,10 @@ func TestConfigSSH(t *testing.T) {
172172
func TestConfigSSH_MissingDirectory(t *testing.T) {
173173
t.Parallel()
174174

175+
if runtime.GOOS == "windows" {
176+
t.Skip("See coder/internal#117")
177+
}
178+
175179
client := coderdtest.New(t, nil)
176180
_ = coderdtest.CreateFirstUser(t, client)
177181

0 commit comments

Comments
 (0)