-
Bug
-
Resolution: Cannot Reproduce
-
Major
-
xunit 1.96 & 1.101, Java 1.7, Jenkins 1.624
I have added a post-build action called Publish xUnit test result report, I have then added a JUnit sub-section and specified the paths to my xml files. I know that xUnit is finding all of the specified files ([xUnit] [INFO] - [JUnit] - 3 test report file(s) were found with the pattern) however xUnit proceeds to base the success of the build on only one of the files and Latest Build Results also shows the breakdown of the tests from the same single file.
If I only specify a single file, I can get xUnit to correctly calculate the build success and display all three of the files individually.
When I specify multiple files only the first file is used.
How do I get xUnit to combine the output of all three files and present them individually?
I have tried:
- Appending all test results into a single file, This leads to the XML being badly formed and unparseable.
- Adding multiple JUnit sub-sections (one for each file), This is no different to normal, only the first specified file is used to report success and display results.