Skip to content

Commit

Permalink
Fix/Functional Test JUnit Reporting (#23)
Browse files Browse the repository at this point in the history
* Fixed Functional Test JUnit Reporting
  • Loading branch information
Carthanial authored Nov 4, 2021
1 parent 6bcf0a7 commit 882fb6f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,11 @@ node {
stage('Functional Test') {
echo "Starting functional test..."
functionalDynamicParallelSteps(testImage);
junit 'target/junit/ci*/*.xml'
junit 'target/junit/ci* *.xml'
}
} catch (e) {
echo 'This will run only if failed'
junit 'target/junit/**/*.xml'
currentBuild.result = 'FAILURE'
throw e
}
Expand Down

0 comments on commit 882fb6f

Please sign in to comment.