junitparser icon indicating copy to clipboard operation
junitparser copied to clipboard

Parses JUnit/xUnit Result XML files with ease

Results 20 junitparser issues
Sort by recently updated
recently updated
newest added

is there a simple way to get a python dict with all the information from the parsed xml? Eventually I want to dump is as a json, so it can...

Currently there are no tests of the command line interface usage of junitparser. They would be good to have to show potential problems after modifications. Eg. #78 was a case...

enhancement

Hi, junitparser has a get method TestSuite::properties(), which returns a generator, containing all properties tag:value, could you also add this to TestCase class? thank you.

Hey, would you consider to add types to this package so that it can be checked with mypy and other type checkers? Thanks a lot!

Hello, As JUnit XML file inputs, I get sometimes **TestSuite** as root and sometimes **TestSuites**, which is as expected from the JUnit XSD file definition. To be able to know...

Hi, According to junit [schema ](https://github.com/junit-team/junit5/blob/main/platform-tests/src/test/resources/jenkins-junit.xsd) a test case have a sequence with skipped, error, failure, system-out and system-err with minimum occurrenses of 0. When updating statistics this is causing...

I have the following xml ```xml (0), actual: 0 vs 0]]> (0), actual: 0 vs 0]]> ``` I need to extract the test properties there's a way to do it?...

Hi! We have used junitparser successfully for years, so thanks for that! Recently we were trying to upgrade the junitparser version we are using to a newer one -- we...

**Description:** I got the following nested results when merge one JUnit XML with root element `testsuite` and another JUnit XML with root element `testsuites`. JUnit XML with `testsuite`(name `test_suite.xml` in...

If root element is `` (not ``) and there is `` (I think any other also will trigger the issue) then `junitparser verify ...` fails with ``` Traceback (most recent...