-
Notifications
You must be signed in to change notification settings - Fork 84
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
FR: change print-invocations plugin to put all invocations on one line #434
Comments
I can see arguments for both behaviors, the idea with the current implementation is that you would tackle these one by one, hence the separate invocations. Edit: Let's see if we can get some second opinions on this, or folks can vote with 👍 / 👎 . |
Would it hurt to output both? |
It's already quite noisy as it is... |
This could be a configuration. Default to current behavior, add |
I like the config idea. The two print styles are both useful but for different purposes. |
Currently, when you have multiple failures, the
:kaocha.plugin/print-invocations
plugin will print each failed test on its own line:This is because the plugin is implemented with a doseq:
kaocha/src/kaocha/plugin/print_invocations.clj
Line 16 in 9d5bb81
Given how long it can take to start up a Clojure program, I'd like it for all of the invocations to be bundled into a single call:
If this is acceptable, I can open a PR.
The text was updated successfully, but these errors were encountered: