feat: reinterpret -q or --quite to show raw output from cargo test#28
feat: reinterpret -q or --quite to show raw output from cargo test#28zjp-CN wants to merge 1 commit into
-q or --quite to show raw output from cargo test#28Conversation
By default, `-q` is not passed, meaning raw output is forwarded as cargo test is running. If `-q` is passed in, don't display raw output, show test tree directly. Note: this commit also makes `--color` default to `always` because not `-q` is the default, and we want forwarding looks pretty in color.
|
If tests take long to execute I would prefer to run |
|
Hi @zjp-CN I think I would just print the cargo test output while running and then the tree without pressing any key. If you want only the normal output, you can just run |
|
What kind of progress bar will it be? We don't know how many tests without running them I guess? |
I meant the |
Ref: #5
By default,
-qis not passed, meaning raw output is forwarded as cargo test is running.If
-qis passed in, don't display raw output, show test tree directly.Note: this commit also makes
--colordefault toalwaysbecause not-qis the default, and we want forwarding looks pretty in color.clear-raw-output.mp4
Some questions:
cargo testprints is fun and it's important to know the execution details in CI as well as unnecessary to run all test twice locally (cargo test + pretty-test)cargo testbefore this tool?