Read JUnit/XUnit XML files and map them to Python objects
Project description
Description
xunitparser reads a JUnit/XUnit XML file and maps it to Python objects. It tries to use the objects available in the standard unittest module.
Usage
import xunitparser ts, tr = xunitparser.parse(open('/path/to/unit.xml'))
ts is a TestSuite class, containing TestCase classes. tr is a TestResult class.
You can change the classes used (though they probably would not work unless they inherit from the xunitparser ones) by using your own xunitparser.Parser class and changing the *_CLASS variables.
Some helpful properties are added to the TestCase class:
for tc in ts: print('Class %s, method %s' % (tc.classname, tc.methodname)) if tc.good: print('went well...', 'but did not run.' if tc.skip else '') else: print('went wrong.')
For more, please read the source code - it is very minimal. The classes also inherit from the unittest module so it is actually a good reference of what you can do with xunitparser.
Changes
1.3.0
Multiple results in a single TestCase are seen as one. The previous way was never validated by real-life examples.
Handle system-out / system-err at the testsuite level
Development
Contributions can be sent in the form of git patches, to laurent@bachelier.name.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file xunitparser-1.3.2.tar.gz
.
File metadata
- Download URL: xunitparser-1.3.2.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c03fb0b1fd6285d20d6caec7153c9311f498f34e80279a0f5ab8da3b8dee0005 |
|
MD5 | be7137eff2a54198f683c1b9fd2b959f |
|
BLAKE2b-256 | 6a3858a1917d06ebe9ea4615837ab37e378d131c5bb2d2adcb31b1cda6e057c4 |