From d70bff28b0a5f2acc21757bc4130f3b63a02bc80 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Fri, 7 Feb 2025 18:13:52 +0100 Subject: [PATCH] oops --- scripts/ci/rust_checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/rust_checks.py b/scripts/ci/rust_checks.py index f0b3e86dcebf4..e70e26996143f 100755 --- a/scripts/ci/rust_checks.py +++ b/scripts/ci/rust_checks.py @@ -258,7 +258,7 @@ def docs_slow(results: list[Result]) -> None: def tests(results: list[Result]) -> None: # We first use `--no-run` to measure the time of compiling vs actually running results.append(run_cargo("test", "--all-targets --all-features --no-run")) - results.append(run_cargo("nextest", "--all-targets --all-features")) + results.append(run_cargo("nextest", "run --all-targets --all-features")) # Cargo nextest doesn't support doc tests yet, run those separately. results.append(run_cargo("test", "--all-features --doc")) @@ -267,7 +267,7 @@ def tests(results: list[Result]) -> None: def tests_without_all_features(results: list[Result]) -> None: # We first use `--no-run` to measure the time of compiling vs actually running results.append(run_cargo("test", "--all-targets --no-run")) - results.append(run_cargo("nextest", "--all-targets")) + results.append(run_cargo("nextest", "run --all-targets")) if __name__ == "__main__":