Remove finally block for junit

Allow this to be gathered by Gradle enterprise since if build is up to
date there will be no tests ran which causes failure. Additionally,
Gradle Enterprise displays the tests better than Jenkins.
This commit is contained in:
Rob Winch 2021-09-22 16:23:49 -05:00
parent b53cab9204
commit a15eb7eecf
1 changed files with 0 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -28,8 +28,6 @@ try {
currentBuild.result = 'FAILED: check'
throw e
} finally {
junit '**/build/test-results/*/*.xml'
}
}
}