From 6f6075a4734ee6f48a4a9e18237a9ab1fa9c015e Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Wed, 6 Sep 2023 07:25:24 +0100 Subject: [PATCH] add --no-fail-fast to cargo test in CI --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index c14d0283..4dc1aed3 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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: