Skip to main content

Read JUnit/XUnit/MSTest XML files and map them to Python objects

Project description

Description

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

Usage

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.

Changes

Development & Contribution

Pull request is welcome.

  1. dev branch is used to accept pull request and do integration

  2. main branch is used to do release, once push, a release process will happen automate

Love My Software: https://www.paypal.me/medlab :)

Release Workflow

  1. python setup.py sdist

  2. python -m twine upload dist/*

Auto release status

Publish Python 🐍 distributions 📦 to PyPI and TestPyPI

Refs:

  1. https://blog.jetbrains.com/pycharm/2017/05/how-to-publish-your-package-on-pypi/

  2. https://packaging.python.org/guides/migrating-to-pypi-org/

  3. https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/

  4. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xunitparserx-1.9.12.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

xunitparserx-1.9.12-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file xunitparserx-1.9.12.tar.gz.

File metadata

  • Download URL: xunitparserx-1.9.12.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for xunitparserx-1.9.12.tar.gz
Algorithm Hash digest
SHA256 21c5cb65f83f13688b4ff129f02fd966f9d40c6131c03742594bc4339570d9ee
MD5 3dbc8995b95f277d27256fb79da65939
BLAKE2b-256 5746424cfdbf82995aa027dc3fa4f85c345acff6ddea72fdaa757f2dc7d7c1ac

See more details on using hashes here.

File details

Details for the file xunitparserx-1.9.12-py3-none-any.whl.

File metadata

  • Download URL: xunitparserx-1.9.12-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for xunitparserx-1.9.12-py3-none-any.whl
Algorithm Hash digest
SHA256 20e7573999e9dfb7cce39c361b1050b78d56000ed909ef6ae8a131efe3d1c962
MD5 fd6e32f7f56c992105b2bffb3498e713
BLAKE2b-256 fbac9ece431042ace8be66418d47409cf399f7e8b064810d1aef1a5221f209b1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page