Skip to content

Commit 2c582be

Browse files
committed
re-try nextest on windows
1 parent e680cde commit 2c582be

File tree

2 files changed

+1
-37
lines changed

2 files changed

+1
-37
lines changed

.config/nextest.toml

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
1-
# Skip testing the butane_codegen workspace member on Windows only.
2-
# It is a proc-macro crate that has test = false in its Cargo.toml
3-
# due to issues with workspace-level testing
4-
# See [issue #419](https://github.com/Electron100/butane/issues/419)
5-
# and PR [#420](https://github.com/Electron100/butane/pull/420).
6-
71
[profile.default]
82
# Default filter runs all tests on non-Windows platforms
93
default-filter = 'all()'
104

11-
# Platform-specific override to exclude butane_codegen on Windows
12-
[[profile.default.overrides]]
13-
platform = 'cfg(target_os = "windows")'
14-
default-filter = 'not package(butane_codegen)'
15-
165
# Retry flaky test on macOS
176
[[profile.default.overrides]]
187
platform = 'cfg(target_os = "macos")'
@@ -39,28 +28,3 @@ priority = 40
3928
[[profile.default.overrides]]
4029
filter = 'package(trybuild_tests)'
4130
priority = 20
42-
43-
# Example packages - all at same priority level
44-
[[profile.default.overrides]]
45-
filter = 'package(example)'
46-
priority = 10
47-
48-
[[profile.default.overrides]]
49-
filter = 'package(custom_pg)'
50-
priority = 10
51-
52-
[[profile.default.overrides]]
53-
filter = 'package(newtype)'
54-
priority = 10
55-
56-
[[profile.default.overrides]]
57-
filter = 'package(getting_started)'
58-
priority = 10
59-
60-
[[profile.default.overrides]]
61-
filter = 'package(getting_started_async)'
62-
priority = 10
63-
64-
[[profile.default.overrides]]
65-
filter = 'package(reserved-words)'
66-
priority = 10

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
run: mise exec ephemeral-postgres -- cargo +stable nextest run --all-features --no-fail-fast
118118
- name: Test without mise
119119
if: runner.os == 'Windows'
120-
run: cargo +stable test --all-features
120+
run: cargo +stable nextest run --all-features --no-fail-fast
121121

122122
- name: Test doctests
123123
run: |

0 commit comments

Comments
 (0)