add --no-fail-fast to cargo test in CI

This commit is contained in:
David Hewitt 2023-09-06 07:25:24 +01:00
parent 8dc3d2bc11
commit 6f6075a473
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ def _run_cargo_test(
command = ["cargo"]
if "careful" in session.posargs:
command.append("careful")
command.append("test")
command.extend(("test", "--no-fail-fast"))
if "release" in session.posargs:
command.append("--release")
if package: