-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
A-libtestArea: `#[test]` / the `test` libraryArea: `#[test]` / the `test` libraryC-enhancementCategory: An issue proposing an enhancement or a PR with one.Category: An issue proposing an enhancement or a PR with one.
Description
I originally raised this against Cargo, but I've since learned that this is to do with libtest
inside Rust itself.
So we have:
cargo test
To run all but ignored tests. Then:
cargo test -- --ignored
To run only ignored tests.
But as far as I can see there is no way to run all tests in parallel short of:
cargo test & cargo test -- --ignored
Which isn't ideal for scripting and is not convenient.
How about?
cargo test -- --all
Cheers
hansrodtang, Emerentius, coriolinus, Hugo-C, rsalmei and 1 more
Metadata
Metadata
Assignees
Labels
A-libtestArea: `#[test]` / the `test` libraryArea: `#[test]` / the `test` libraryC-enhancementCategory: An issue proposing an enhancement or a PR with one.Category: An issue proposing an enhancement or a PR with one.