marick / Midje

Midje provides a migration path from clojure.test to a more flexible, readable, abstract, and gracious style of testing
MIT License
1.69k stars 129 forks source link

Print namespaces of test that failed in the sumary #443

Closed claynon closed 1 year ago

claynon commented 6 years ago

When I run lein midje and the output of failed tests are too it's hard to find out which namespaces have tests that failed. So it would be nice to have this list of namespace in the end sumary Nowadays the sumary looks like this:

FAILURE: 7 checks failed. (But 193 succeeded.) Subprocess failed

It would be nice if it looked like this:

FAILURE: 7 checks failed. (But 193 succeeded.) namespaces with failed tests: project.foo.anteater-test project.tapir-test project.capybara-test Subprocess failed

caiorulli-quintoandar commented 5 years ago

Hi, @claynon . Don't know if you still need it, but there's a configuration setting for that. https://github.com/marick/Midje/wiki/Configuration-files You can use (change-defaults :visible-failure-namespace true).