From 0b7a9db02d7e700a0dd1c4c1d9fbfefdc2fb9668 Mon Sep 17 00:00:00 2001 From: Stijn Bannink <27051051+stijnb1234@users.noreply.github.com> Date: Tue, 25 Feb 2020 16:05:18 +0100 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6a73b94..8e77f9a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { echo 'Archiving coverage results...' jacoco(execPattern: '**/**.exec', classPattern: '**/classes', sourcePattern: '**/src/main/java') echo 'Archiving test results...' - junit 'target/surefire-reports/*.xml' + junit allowEmptyResults: true, testResults: 'target/surefire-reports/*.xml' echo 'Archiving artifacts...' archiveArtifacts artifacts: 'target/*.jar', fingerprint: true }