bat-test
bat-test copied to clipboard
Can't figure out how to use the fail-fast? option
(bat-test :parallel true :report {:type :progress :fail-fast? true})
does not seem to return immediately upon receiving a single failure. Am I using this incorrectly? Thank you.
:fail-fast?
is not :report
option. It is top-level option like :parallel
.
Thank you
Not incredibly important, but thought I should report.
bat-test: unknown option(s): :fail-fast?
occurs when I use fail-fast?
like so (bat-test :parallel true :fail-fast? true :report {:type :progress})
Using:
[metosin/bat-test "0.4.0" :scope "test"]
Oh. :fail-fast?
is eftest option so I haven't included it in Boot task options, but even the extra options are passed into eftest.
It would be nice to see a release containing this fix. Thanks!