I am using gradle as my builder. After running all of my test I want to execute additional task. If there are no test failures
test.doLast { /*my task*/ }
works fine. But if there is at least one test failure my task does not execute.
Is there a way to execute my task even if some of my test failed.