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.
Hi, There is a test error while testing in Debian autopkgtest testsuite. ``` _____________ XMLTestRunnerTestCase.test_xmlrunner_hold_traceback ______________ self = @unittest.skipIf(not hasattr(sys, 'getrefcount'), 'skip - PyPy does not have sys.getrefcount.') @unittest.skipIf((3, 0)...
Hi, The LICENSE file installing in usr/LICENSE [0] in Debian. I have a patch to address it, ```patch --- a/setup.py +++ b/setup.py @@ -27,7 +27,6 @@ setup( description = 'unittest-based...
As reported in issue https://github.com/xmlrunner/unittest-xml-reporting/issues/284, the data_files statement in the setup() calls installs the LICENSE file in the wrong place: in /usr/LICENSE, or even /LICENSE depending on the configuration. So...
Related to #210 When using subTest the subtests will be counted in the "tests" attribute but no testcase element is generated so the numbers won't match. Example for a single...
For certain use cases, it is very helpful to have the hostname of the workstation that ran the testsuite. Therefore this PR propose a simple addition to add the `hostname`...
This issue leaves the package unable to be installed using setuptools. See https://github.com/pypa/setuptools/pull/4870
I just tried to run the unittests coming with code, but they will not run with python 3.12.3 (on Ubuntu 24.04). Before running the unittests I applied the fixes for...
The following script fails: ``` import unittest import xmlrunner class ExampleTestCase(unittest.TestCase): @unittest.expectedFailure def test_unexpected_success(self): self.assertTrue(True) if __name__ == "__main__": # Run tests with xmlrunner and output the results as XML...