-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
C-feature-requestCategory: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Command-test
Description
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
vincentdephily, kaine-shaman, DaTa-, cloutier, rsalmei and 5 more
Metadata
Metadata
Assignees
Labels
C-feature-requestCategory: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`Command-test