Hi, this is my first question on this forum.
In my project I have several integration tests. When I run just a single testcase, like cargo test my-test
, all the integration tests are run. Each prints 4-5 lines stating that the executable got run and all its tests were filtered out. I always have to scroll a terminal to find out if the test passes OR I misspelled test name.
Is there a way to turn off output from a test binary that does not run any tests?
Alternatively, is there a way to have a final warning informing that no tests were executed?