Skip to content

Commit

Permalink
add --no-fail-fast to cargo test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Sep 6, 2023
1 parent 8dc3d2b commit f4da30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def _run_cargo_test(
command = ["cargo"]
if "careful" in session.posargs:
command.append("careful")
command.append("test")
command += ("test", "--no-fail-fast")
if "release" in session.posargs:
command.append("--release")
if package:
Expand Down

0 comments on commit f4da30d

Please sign in to comment.