I'm working on fixing `lein test`'s use of `System/exit` [here](https://github.com/technomancy/leiningen/issues/2718). I noticed that circleci.test has the same shortcoming in these places: - https://github.com/circleci/circleci.test/blob/8bc3ed6ee364dce5d446b0b1163e7041a5149f7b/src/circleci/test.clj#L243 - https://github.com/circleci/circleci.test/blob/8bc3ed6ee364dce5d446b0b1163e7041a5149f7b/src/circleci/test.clj#L253 In a nutshell, I believe if a multiple of 256 failures+errors occurs in circleci.test, an exit code of 0 may occur.
I'm working on fixing
lein test's use ofSystem/exithere.I noticed that circleci.test has the same shortcoming in these places:
circleci.test/src/circleci/test.clj
Line 243 in 8bc3ed6
circleci.test/src/circleci/test.clj
Line 253 in 8bc3ed6
In a nutshell, I believe if a multiple of 256 failures+errors occurs in circleci.test, an exit code of 0 may occur.