Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <ahiemstra@heimr.nl>2017-03-14 19:15:18 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2017-03-14 19:15:18 +0300
commit1d008bdfc2dbe28d46e4f8b47d43d79770026334 (patch)
treee350217d6688a1d208b759e1b5bce4d7df0678e1 /Jenkinsfile
parent6a28368bebb028df178f2ac2b734c2a3d918d13d (diff)
Allow empty JUnit results so a test failure does not become a build fail
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index a324a79471..a056b5e115 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,7 +32,7 @@ parallel_nodes(['linux && cura', 'windows && cura']) {
// Perform any post-build actions like notification and publishing of unit tests.
stage('Finalize') {
// Publish the test results to Jenkins.
- junit 'build/junit*.xml'
+ junit allowEmptyResults: true, testResults: 'build/junit*.xml'
notify_build_result(env.CURA_EMAIL_RECIPIENTS, '#cura-dev', ['master', '2.'])
}