Merge pull request #3434 from davidhewitt/test-no-fail-fast

add --no-fail-fast to cargo test in CI
This commit is contained in:
David Hewitt 2023-09-09 12:01:08 +00:00 committed by GitHub
commit a425c69dce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: