This is a feature request.
I execute test:all frequently, which generates a lot of output, which at least I mostly ignore anyways, as long as the tests pass.
In order to make the output shorter/clearer/simpler, I'd like to suggest to add a --quiet (or similar) option. This option would reduce the output from
π Mocking
----------
Generating mock for foo.h...
...
...
...
π Preprocessing Test Files
---------------------------
Preprocessing foo.c...
...
...
...
π Collecting Test Context
--------------------------
Parsing test case names foo.c...
...
...
...
to
...
π Mocking...
π Preprocessing Test Files...
π Collecting Test Context...
...
This would still show to the user what is going on, but reduce the output drastically. When errors occur, the test can be rerun without the --quiet flag. The overall test summary should be shown as usual at the end.
This is a feature request.
I execute
test:allfrequently, which generates a lot of output, which at least I mostly ignore anyways, as long as the tests pass.In order to make the output shorter/clearer/simpler, I'd like to suggest to add a
--quiet(or similar) option. This option would reduce the output fromto
This would still show to the user what is going on, but reduce the output drastically. When errors occur, the test can be rerun without the
--quietflag. The overall test summary should be shown as usual at the end.