Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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.
::
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
.
__ http://docs.python.org/library/unittest.html
1.3.4
1.3.0
Contributions can be sent to https://gitlab.com/woob/xunitparser/
FAQs
Read JUnit/XUnit XML files and map them to Python objects
We found that xunitparser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.