Skip to content

Commit 69149fd

Browse files
committed
(CI) test_windows use cargo test
Issue #218
1 parent 4f5175c commit 69149fd

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,6 @@ jobs:
526526
- name: git checkout
527527
uses: actions/checkout@v4
528528
- run: rustup toolchain install ${{ env.MSRV_UPLOAD }} --profile minimal
529-
- run: cargo install --locked cargo-nextest
530529
- name: set log file filesystem Modified Times
531530
shell: bash
532531
run: |
@@ -548,10 +547,9 @@ jobs:
548547
shell: powershell
549548
run: |
550549
Set-PSDebug -Trace 1
551-
cargo.exe nextest --version
552-
# XXX: Windows nextest is more fragile with multiple processes
553-
${env:NEXTEST_TEST_THREADS}="1"
554-
cargo.exe nextest run --locked --bins --lib --no-fail-fast --final-status-level=fail
550+
# XXX: do not use nextest as it is buggy on Windows
551+
# see Issue #218
552+
cargo.exe test --locked --bins --lib --no-fail-fast
555553
556554
job_flamegraph:
557555
# check that `flamegraph.sh` runs

0 commit comments

Comments
 (0)