Skip to content

Commit

Permalink
set --no-fail-fast for cargo nextest
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyukang committed Nov 20, 2024
1 parent f3dbb0c commit 4b73e2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
tool: nextest
- run: |
RUST_BACKTRACE=full RUST_LOG=trace cargo nextest run
RUST_BACKTRACE=full RUST_LOG=trace cargo nextest run --no-fail-fast
fmt:
name: Rustfmt
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GRCOV_EXCL_LINE = ^\s*(\})*(\))*(;)*$$|\s*((log::|tracing::)?(trace|debug|info|w

.PHONY: test
test:
RUST_LOG=off cargo nextest run
RUST_LOG=off cargo nextest run --no-fail-fast

.PHONY: clippy
clippy:
Expand Down

0 comments on commit 4b73e2c

Please sign in to comment.