unittest-xml-reporting
                                
                                 unittest-xml-reporting copied to clipboard
                                
                                    unittest-xml-reporting copied to clipboard
                            
                            
                            
                        unittest-based test runner with Ant/JUnit like XML reporting.
The junit-10.xsd used for testing does not match the junit-10.xsd file the xUnit plugin uses. https://github.com/jenkinsci/xunit-plugin/blob/master/src/main/resources/org/jenkinsci/plugins/xunit/types/model/xsd/junit-10.xsd Updating the file in this project and running unit tests results in the following...
Hello, I'm using your library and it usefully meets my expectation. Someday during unit-test, I've got an error message using 'xmlrunner'. `$ python3 -m xmlrunner discover ./test -o ./junit-reports /bin/python3:...
With the newly added 'annotate' decorator, it is now possible to add custom xml attributes to both test cases and test suites. This makes it possible to mark tests with...
Hello, We were using this library in our project and noticed that errored out when a single test is skipped. I traced it back to a `NodeValue` getting set to...
For the import: ``` import xmlrunner ``` mypy complains: > Skipping analyzing "xmlrunner": module is installed, but missing library stubs or py.typed marker Just dropping this here. We are using...
Hello, According to the [PyPi doc](https://pypi.org/project/unittest-xml-reporting/) the latest python verison unittest-xml-reporting 3.2.0 support is 3.10. Does it also supports 3.11x? if no, are there any plans of supporting it?
Handle error case (due to using python-subunit + unittest-xml-reporting) where sys.stdout has no buffer attribute, causing a failure and hang in subunit: protocol = TestProtocolServer(result, self._passthrough, self._forward) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/venv/lib/python3.11/site-packages/subunit/init.py",...
We only set the output path to `test-reports` but we also generate other files into this folder (like the coverage report). We now want to parse only the test reports....
When running xmlrunner through `unittest.main()` and passing `exit=False`, unittest will not set a result code, but sets `self.result` to the xmrunner result. Because xmlrunner does not return a result compatible...