gre
August 15, 2016, 12:08am
1
Hey there,
we are using CodeCov to log coverage reports. If a test fails, that’s usually pretty bad and we want to
stop the execution of further scripts (that saves time after all)
don’t process post
tasks (like sending out our reports to CodeCov)
I was pretty surprised when I saw this behavior, because on Unix it’s the default behavior to exit the execution if an error code is sent
https://circleci.com/gh/dlang/dmd/329
1 Like
It appears that they intentionally chose to set it up that way because it “allows our test output to tell you about all the tests that fail, not just the first error.”
https://circleci.com/docs/configuration/#test
gre
August 17, 2016, 10:06pm
3
thanks a lot for your answer - I am not sure what to say. I can understand their reasoning, but it’s still hard to deal with