
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
xunitparserx reads a JUnit/XUnit/MSTest XML file and maps it to Python objects.
It tries to use the objects available in the standard unittest
module.
xunitparserx work both for python2 and python3, with addition MSTest trx support
::
import xunitparserx
ts, tr = xunitparserx.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 xunitparserx
ones) by using your own
xunitparserx.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 xunitparserx
.
__ http://docs.python.org/library/unittest.html
1.9.10+
1.9.9
1.3.3
1.3.0
Pull request is welcome.
Love My Software: https://www.paypal.me/medlab :)
.. image:: https://github.com/medlab/xunitparserx/workflows/Publish%20Python%20%F0%9F%90%8D%20distributions%20%F0%9F%93%A6%20to%20PyPI%20and%20TestPyPI/badge.svg :alt: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
Refs:
FAQs
Read JUnit/XUnit/MSTest XML files and map them to Python objects
We found that xunitparserx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.