Skip to content

Commit 0c6e316

Browse files
ci: cargo nextest activation
1 parent 3667bd6 commit 0c6e316

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def cmds(self, crates: Set[str], is_nightly: bool) -> List[List[str]]:
4343
package_args.extend(["--package", package])
4444

4545
if self == BaseCommand.TEST:
46-
return [["cargo", "test"] + package_args]
46+
return [["cargo", "nextest", "run"] + package_args]
4747
elif self == BaseCommand.CLIPPY:
4848
clippy_args = package_args if len(package_args) > 0 else ["--workspace"]
4949
return [["cargo", "clippy"] + clippy_args + ["--all-targets", "--all-features"]]

0 commit comments

Comments
 (0)