diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index bc611a29d..15c85fb63 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -22,6 +22,11 @@ jobs: - name: Report Rust Toolchain run: rustup show + - name: Install cargo nextest + uses: taiki-e/install-action@v2 + with: + tool: cargo-nextest + - name: Rust Cache uses: Swatinem/rust-cache@v2 @@ -46,4 +51,6 @@ jobs: - name: Run Unit Tests # Very loud on windows CI, which has been a source of instability run: | - cargo test -vv -- --nocapture + cargo nextest run --no-fail-fast --no-capture --cargo-verbose --cargo-verbose + env: + RUST_BACKTRACE: 1