diff --git a/011-simple-maven-dev-func-pipeline.groovy b/011-simple-maven-dev-func-pipeline.groovy index 32dbf1a..ffcd587 100644 --- a/011-simple-maven-dev-func-pipeline.groovy +++ b/011-simple-maven-dev-func-pipeline.groovy @@ -18,7 +18,7 @@ pipeline { post { always { 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 { always { 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: '']) } } }