mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Allow empty JUnit results so a test failure does not become a build fail
This commit is contained in:
parent
6a28368beb
commit
1d008bdfc2
1 changed files with 1 additions and 1 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
|
@ -32,7 +32,7 @@ parallel_nodes(['linux && cura', 'windows && cura']) {
|
||||||
// Perform any post-build actions like notification and publishing of unit tests.
|
// Perform any post-build actions like notification and publishing of unit tests.
|
||||||
stage('Finalize') {
|
stage('Finalize') {
|
||||||
// Publish the test results to Jenkins.
|
// 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.'])
|
notify_build_result(env.CURA_EMAIL_RECIPIENTS, '#cura-dev', ['master', '2.'])
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue