Skip to content

Commit

Permalink
ci: add --no-fail-fast flag to cargo test for git-devel job
Browse files Browse the repository at this point in the history
We might be missing a few failures in the devel job without realizing it.
  • Loading branch information
arxanas committed Jun 15, 2024
1 parent 3b00796 commit 8e13316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-git-devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 8e13316

Please sign in to comment.