Skip to content

Commit b9a6fb1

Browse files
committed
Change quoted nextest --all arg to --workspace
This changes the deprecated `--all` option for `cargo nextest` to the recommended (and equivelent) `--workspace` option, in quoted default argument values for recipes in `justfile`. Other occurrences of `--all` to `cargo nextest`, and other commands for which `--all` is a deprecated alias of `--workspace`, were changed to `--workspace` in 14d472d (#1654), but I had missed these.
1 parent 4d293cb commit b9a6fb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

justfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,10 @@ audit:
245245
cargo deny check advisories bans licenses sources
246246

247247
# run tests with `cargo nextest` (all unit-tests, no doc-tests, faster)
248-
nextest *FLAGS="--all":
248+
nextest *FLAGS="--workspace":
249249
cargo nextest run {{ FLAGS }}
250250

251-
summarize EXPRESSION="all()": (nextest "--all --run-ignored all --no-fail-fast --status-level none --final-status-level none -E '" EXPRESSION "'")
251+
summarize EXPRESSION="all()": (nextest "--workspace --run-ignored all --no-fail-fast --status-level none --final-status-level none -E '" EXPRESSION "'")
252252

253253
# run nightly rustfmt for its extra features, but check that it won't upset stable rustfmt
254254
fmt:

0 commit comments

Comments
 (0)