From 105f4822114b48350ed0ab06af4e6fed597c4343 Mon Sep 17 00:00:00 2001 From: Cyrus AI Date: Sun, 19 Oct 2025 15:25:38 +0000 Subject: [PATCH] feat: Add --no-fail-fast flag to run all tests in workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the GitHub Actions workflow to use the --no-fail-fast flag with cargo nextest. This ensures all tests run even when some fail, allowing us to see the full test suite results instead of stopping at the first failure. Fixes PER-9 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/rust-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-tests.yml b/.github/workflows/rust-tests.yml index 96f319d..48fb5df 100644 --- a/.github/workflows/rust-tests.yml +++ b/.github/workflows/rust-tests.yml @@ -34,4 +34,4 @@ jobs: run: cargo nextest --version || cargo install cargo-nextest --locked - name: Run tests - run: cargo nextest run + run: cargo nextest run --no-fail-fast