Skip to content

Commit

Permalink
JENKINS-31553: Parse surefire-2.19.
Browse files Browse the repository at this point in the history
This would be a format which fixes the issue, I do not see how
this can easily be solved with Jenkins' xUnit as the XML produced
by surefire-2.19 is just invalid.
See https://issues.apache.org/jira/browse/SUREFIRE-964 as well.
  • Loading branch information
mfriedenhagen committed Jan 8, 2016
1 parent fe963f6 commit f19e076
Showing 1 changed file with 4 additions and 4 deletions.
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" errors="0" failures="0" name="User sessions"
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" errors="0" failures="0" skipped="0" name="User sessions"
tests="12"
time="66.864949">
<testcase classname="User sessions" name="Login" time="40.857683">
time="66.864">
<testcase classname="User sessions" name="Login" time="40.857">
</testcase>
<testcase classname="User sessions" name="Logout"
time="25.896327">
time="25.896">
</testcase>
</testsuite>

0 comments on commit f19e076

Please sign in to comment.