10000 test: skip on windows · coder/coder@e147688 · GitHub
[go: up one dir, main page]

Skip to content

Commit e147688

Browse files
test: skip on windows
1 parent a3cc8e7 commit e147688

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

agent/agentcontainers/api_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1652,6 +1652,10 @@ func TestAPI(t *testing.T) {
16521652
t.Run("Error", func(t *testing.T) {
16531653
t.Parallel()
16541654

1655+
if runtime.GOOS == "windows" {
1656+
t.Skip("Dev Container tests are not supported on Windows (this test uses mocks but fails due to Windows paths)")
1657+
}
1658+
16551659
var (
16561660
ctx = testutil.Context(t, testutil.WaitMedium)
16571661
logger = slogtest.Make(t, &slogtest.Options{IgnoreErrors: true}).Leveled(slog.LevelDebug)

0 commit comments

Comments
 (0)
0