jenkins-job-builder/tests/publishers/fixtures/junit001.xml
Matthieu Baerts deafd08377
junit: add 'Skip marking build as unstable on test failure' param
This new option has been added in JUnit v1.51

  https://github.com/jenkinsci/junit-plugin/releases/tag/junit-1.51

The user can decide not to mark a build as unstable on test failure.

Signed-off-by: Matthieu Baerts <matthieu.baerts@tessares.net>
Change-Id: I960ed98cf4b0f8f632546492f6dbb6d1aa0055c9
2021-08-31 18:18:48 +02:00

15 lines
536 B
XML

<?xml version="1.0" encoding="utf-8"?>
<project>
<publishers>
<hudson.tasks.junit.JUnitResultArchiver plugin="junit">
<testResults>nosetests.xml</testResults>
<keepLongStdio>true</keepLongStdio>
<healthScaleFactor>1.0</healthScaleFactor>
<allowEmptyResults>false</allowEmptyResults>
<skipPublishingChecks>false</skipPublishingChecks>
<skipMarkingBuildUnstable>false</skipMarkingBuildUnstable>
<testDataPublishers/>
</hudson.tasks.junit.JUnitResultArchiver>
</publishers>
</project>