Fork me on GitHub
#testing
<
2017-01-25
>
emergence19:01:58

Hi -- has anyone had an issue similar to this: Using boot to run a clj/s test suite on CircleCI (with some clojure.spec tests). When tests fail, CircleCI does not recognize and says tests were successful. I think it's because an exit code of 0 was returned but I'm wondering if there's more going on.

anmonteiro21:01:40

@emergence I had that issue with ClojureScript

anmonteiro21:01:26

if that's your issue, just use @bensu's Doo library

anmonteiro21:01:50

it'll return the correct exit code for CI's

emergence21:01:06

Hi @anmonteiro -- Thanks for responding. I actually just figured it out. Was using crisptrutski/boot-cljs-test and had to add :exit? true to my (test-cljs) call. I believe it uses doo as a dependency.