Empty JUnit results are not allowed

This commit is contained in:
Waldemar Zurowski 2020-07-21 15:50:21 +01:00
parent 969ee34b0a
commit 7437630d56

View File

@ -65,7 +65,7 @@ pipeline {
post { post {
always { always {
archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log' archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log'
junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true, allowEmptyResults: true junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true
bat '.ci/kill_corda_procs.cmd' bat '.ci/kill_corda_procs.cmd'
} }
cleanup { cleanup {
@ -87,7 +87,7 @@ pipeline {
post { post {
always { always {
archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log' archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log'
junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true, allowEmptyResults: true junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true
bat '.ci/kill_corda_procs.cmd' bat '.ci/kill_corda_procs.cmd'
} }
cleanup { cleanup {