Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check for <testsuites> vs <testsuite> root tag. Fixes #9
According to the JUnit XML specs: https://www.ibm.com/support/knowledgecenter/en/SSUFAU_1.0.0/com.ibm.rsar.analysis.codereview.cobol.doc/topics/cac_useresults_junit.html the root element in the XML is a <testsuites> tag. However some of the test runners we've used skip that and have a single <testsuite> tag as their root node. This causes failures for people using some of the other test runners, e.g. - Katalon Studio - exports with the <testsuites> tag - Nose, py.test - export results with the <testsuite> tag
- Loading branch information