We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b91cb9 commit 14ec5b7Copy full SHA for 14ec5b7
build.gradle
@@ -223,7 +223,7 @@ task failOnTestError() {
223
if(juniXml.exists()){
224
def junitResult = new XmlSlurper().parse(juniXml)
225
def failures = junitResult.'**'.findAll { it.name() == 'failure' }
226
- def errors = junitResult.'**'.findAll { it.name() == 'errors' }
+ def errors = junitResult.'**'.findAll { it.name() == 'error' }
227
228
if (failures || errors) {
229
def amount = failures.size() + errors.size()
0 commit comments