-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
cargo test -q not works as expected #4325
Labels
Comments
Thanks for the report! Could you gist the output that's getting printed as well? |
cargo test
cargo test -q
I've expected not output at all from |
Ah this is all output coming from the test harness in rust-lang/rust, which Cargo doesn't forward arguments like -q to righ tnow. |
bors
added a commit
that referenced
this issue
Mar 11, 2019
Add --quiet option for `cargo test` Fixes #4325
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cargo test --help
promise "-q, --quiet No output printed to stdout",but
cargo test -q
andcargo test
produce the same output to terminal.The text was updated successfully, but these errors were encountered: