Skip to content

Commit ade3ee5

Browse files
committed
ci(linux): add --no-fail-fast to cargo test invocations
1 parent dcd0b8d commit ade3ee5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ jobs:
8989
run: |
9090
export TEST_GIT="$PWD"/git
9191
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")
92-
cargo test --all-features --examples --tests --workspace
92+
cargo test --all-features --examples --tests --workspace --no-fail-fast
9393
9494
# Note that `--doc` can't be combined with other tests.
9595
- name: Run Rust doc-tests (all features)
9696
timeout-minutes: 30
9797
run: |
9898
export TEST_GIT="$PWD"/git
9999
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")
100-
cargo test --all-features --doc --workspace
100+
cargo test --all-features --doc --workspace --no-fail-fast
101101
102102
- name: Compile (no features)
103103
run: cargo build --no-default-features --all-targets --workspace
@@ -107,4 +107,4 @@ jobs:
107107
run: |
108108
export TEST_GIT="$PWD"/git
109109
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")
110-
cargo test --no-default-features --examples --tests --workspace
110+
cargo test --no-default-features --examples --tests --workspace --no-fail-fast

0 commit comments

Comments
 (0)