Skip to content

Commit 135381b

Browse files
authored
chore(cli): skip support bundle test on windows (coder#12596)
1 parent 5dd436c commit 135381b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cli/support_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"encoding/json"
66
"io"
77
"path/filepath"
8+
"runtime"
89
"testing"
910
"time"
1011

@@ -21,6 +22,9 @@ import (
2122

2223
func TestSupportBundle(t *testing.T) {
2324
t.Parallel()
25+
if runtime.GOOS == "windows" {
26+
t.Skip("for some reason, windows fails to remove tempdirs sometimes")
27+
}
2428

2529
t.Run("Workspace", func(t *testing.T) {
2630
t.Parallel()

0 commit comments

Comments
 (0)