Added true missing report

This commit is contained in:
Guillem Hernandez Sola
2018-09-21 13:06:07 +02:00
parent 5aa98cf020
commit 40b6929f34

View File

@@ -18,7 +18,7 @@ pipeline {
post { post {
always { always {
junit 'target/surefire-reports/*.xml' junit 'target/surefire-reports/*.xml'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'target/surefire-reports', reportFiles: 'index.html', reportName: 'Development Test', reportTitles: '']) publishHTML([allowMissing: true, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'target/surefire-reports', reportFiles: 'index.html', reportName: 'Development Test', reportTitles: ''])
} }
} }
} }
@@ -34,7 +34,7 @@ pipeline {
post { post {
always { always {
junit 'target/surefire-reports/*.xml' junit 'target/surefire-reports/*.xml'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'target/surefire-reports', reportFiles: 'index.html', reportName: 'Functional Test', reportTitles: '']) publishHTML([allowMissing: true, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'target/surefire-reports', reportFiles: 'index.html', reportName: 'Functional Test', reportTitles: ''])
} }
} }
} }