-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libtest: provide a way to run *all* tests #50363
Labels
A-libtest
Area: `#[test]` / the `test` library
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
Comments
pietroalbini
added
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
A-libtest
Area: `#[test]` / the `test` library
labels
May 1, 2018
Exercism depends a lot on ignored-by-default tests so this would be really useful. A short look over libtest makes me believe that this would be very easy to add. I'll try my hand at it. |
bors
added a commit
that referenced
this issue
Sep 15, 2018
Add option to run all tests This adds the "--include-ignored" flag to libtest, which allows running ignored and unignored tests in one go. Closes #50363
@Emerentius I came here because I'm just working through Excercism and don't want to uncomment all the ignored tests ;) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-libtest
Area: `#[test]` / the `test` library
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
I originally raised this against Cargo, but I've since learned that this is to do with
libtest
inside Rust itself.So we have:
To run all but ignored tests. Then:
To run only ignored tests.
But as far as I can see there is no way to run all tests in parallel short of:
Which isn't ideal for scripting and is not convenient.
How about?
Cheers
The text was updated successfully, but these errors were encountered: