Skip to content

Commit 58fa6a4

Browse files
committed
fix cfg
1 parent 978badf commit 58fa6a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.config/nextest.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ default-filter = 'all()'
1010

1111
# Platform-specific override to exclude butane_codegen on Windows
1212
[[profile.default.overrides]]
13-
platform = "cfg(windows)"
13+
platform = 'cfg(target_os = "windows")'
1414
default-filter = 'not package(butane_codegen)'
1515

1616
# Retry flaky test on macOS
1717
[[profile.default.overrides]]
18-
platform = "cfg(macos)"
18+
platform = 'cfg(target_os = "macos")'
1919
filter = 'test(cleanup_on_drop)'
2020
retries = 3
2121

0 commit comments

Comments
 (0)