We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978badf commit 58fa6a4Copy full SHA for 58fa6a4
.config/nextest.toml
@@ -10,12 +10,12 @@ default-filter = 'all()'
10
11
# Platform-specific override to exclude butane_codegen on Windows
12
[[profile.default.overrides]]
13
-platform = "cfg(windows)"
+platform = 'cfg(target_os = "windows")'
14
default-filter = 'not package(butane_codegen)'
15
16
# Retry flaky test on macOS
17
18
-platform = "cfg(macos)"
+platform = 'cfg(target_os = "macos")'
19
filter = 'test(cleanup_on_drop)'
20
retries = 3
21
0 commit comments