deafd08377
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
15 lines
536 B
XML
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>
|