Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Feb 7, 2025
1 parent b06d3b0 commit d70bff2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ci/rust_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand All @@ -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__":
Expand Down

0 comments on commit d70bff2

Please sign in to comment.