From f656e192bf2d44a34949cd87287b217105f769c6 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Tue, 9 Sep 2025 13:17:14 -0700 Subject: [PATCH] No fail fast (#3387) Add --no-fail-fast to the new `nextest` --- .github/workflows/rust-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 489c5bb2..bae33e30 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -188,7 +188,7 @@ jobs: # Tests take too long for release builds to run them on every PR. if: ${{ matrix.profile != 'release' }} continue-on-error: true - run: cargo nextest run --all-features --target ${{ matrix.target }} + run: cargo nextest run --all-features --no-fail-fast --target ${{ matrix.target }} env: RUST_BACKTRACE: 1