Skip to content
This repository was archived by the owner on May 25, 2026. It is now read-only.

Latest commit

 

History

13 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Note: This project is unmaintained. Use a more stable and mature project, like unittest-xml-reporting.

This is a test runner for the unittest module, Python's version of the xUnit framework. The test runner captures the test results in a XML file that is compatible with the XML output of JUnit. Various tools, like continuous integration servers can parse this output.

Sample usage:

import unittest

from xmlrunner import XMLTestRunner

loader = unittest.TestLoader()
tests = loader.discover()
runner = XMLTestRunner()
runner.run(tests)

About

XML Unit Test Runner for Python

Resources

Stars

2 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages