From 8e13316197f00cc8d30b2d59dd8c825a7d28eff9 Mon Sep 17 00:00:00 2001 From: Waleed Khan Date: Sat, 15 Jun 2024 15:58:14 -0700 Subject: [PATCH] ci: add `--no-fail-fast` flag to `cargo test` for git-devel job We might be missing a few failures in the devel job without realizing it. --- .github/workflows/linux-git-devel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux-git-devel.yml b/.github/workflows/linux-git-devel.yml index 2d290ceb9..04d8308e1 100644 --- a/.github/workflows/linux-git-devel.yml +++ b/.github/workflows/linux-git-devel.yml @@ -65,11 +65,11 @@ jobs: run: | export TEST_GIT="$PWD"/git-master/git export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT") - (cd git-branchless && cargo test --all-features --examples --tests --workspace) + (cd git-branchless && cargo test --all-features --examples --tests --workspace --no-fail-fast) - name: Run Rust tests on Git `next` timeout-minutes: 30 run: | export TEST_GIT="$PWD"/git-next/git export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT") - (cd git-branchless && cargo test --all-features --examples --tests --workspace) + (cd git-branchless && cargo test --all-features --examples --tests --workspace --no-fail-fast)