From 40b6929f3431fb89feb3b4d5af8c89fb6c999466 Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Fri, 21 Sep 2018 13:06:07 +0200 Subject: [PATCH] Added true missing report --- 011-simple-maven-dev-func-pipeline.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: '']) } } }