Skip to main content

A pytest plugin for generating NUnit3 test result XML output

Project description

PyPI version PyPI version Python versions PyPI download month

A pytest plugin for generating NUnit3 test result XML output

Requires: - Pytest 5.1.0+ - Python 3.7+

Command-line options

--nunit-xml

A string value to set the file name of the generated XML file.

Argument takes a path to the output file, either relative, or absolute.

--nunit-prefix

A string value to prefix all test case names the string provided.

Defaults to an empty string.

INI Options

nunit_show_username

Boolean value to include the system username in the test run properties.

Defaults to false

nunit_show_user_domain

Boolean value to include the system user domain in the test run properties.

Defaults to false

nunit_suite_name

(Deprecated, value ignored)

String value to set the test suite name.

Defaults to 'pytest'

nunit_attach_on

Enumeration to control whether the attachments property is set on all test cases when the add_nunit_attachment is used.

Can be one of:

  • any - Include test attachments for all outcomes (Default)

  • pass - Include test attachments for only passed test cases

  • fail - Include test attachments for only failed test cases

Fixtures

The following fixtures are made available by this plugin.

record_nunit_property

Calling record_nunit_property(key: str, value: str) will result in Property tags being added to the test-case for the related node.

def test_basic(record_nunit_property):
    record_nunit_property("test", "value")
    assert 1 == 1

add_nunit_attachment

Add an attachment to a node test-case by calling the add_nunit_attachment(path: str, description: str) function with the filepath and a description.

def test_attachment(add_nunit_attachment):
    pth = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'fixture.gif')
    add_nunit_attachment(path, "peanut butter jelly time")
    assert 1 == 1

Usage with Azure Pipelines

Add the following steps to your build job to publish the results to Azure Pipelines:

- script: "pip install pytest-nunit"

- script: |
    python -m pytest tests -v --nunit-xml=test-results.xml
  continueOnError: true

- task: PublishTestResults@2
  inputs:
    testResultsFormat: NUnit
    testResultsFiles: '**/test-results.xml'

Skipped Tests

Skipped tests will have the reason attribute (if provided) included in the results.

https://github.com/pytest-dev/pytest-nunit/raw/master/docs/source/_static/screen_skips.png

Attachments

Using the add_nunit_attachment fixture will render any attachments in the “attachments” tab inside the Tests console:

https://github.com/pytest-dev/pytest-nunit/raw/master/docs/source/_static/screen_attachments.png

Failures and xfails

Any failed tests, whether as xpass or xfail, will have the error output and comparison, as well as the failing line in the stack trace.

https://github.com/pytest-dev/pytest-nunit/raw/master/docs/source/_static/screen_fails.png

Compatibility with other plugins

x-dist

When running with -f, make sure to add in your pytest config file (setup.cfg etc) looponfailroots = testdir to exclude xml report files from being watched for changes.

Check looponfails

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

pytest-nunit-1.0.2.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

pytest_nunit-1.0.2-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file pytest-nunit-1.0.2.tar.gz.

File metadata

  • Download URL: pytest-nunit-1.0.2.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0b5+

File hashes

Hashes for pytest-nunit-1.0.2.tar.gz
Algorithm Hash digest
SHA256 e38d46c6db81c310fe263fefb023913f887fdd670671650cbabcdc4f6fef01fc
MD5 c4fc659081c98a7f83d8702128768951
BLAKE2b-256 4ff13fb6d5378d1148d060cd2721f8b68735857e60ec73f04812bb7a5fd8282b

See more details on using hashes here.

File details

Details for the file pytest_nunit-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: pytest_nunit-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0b5+

File hashes

Hashes for pytest_nunit-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a054b1346e4b1e1095b9088dbb21247a18ecc24ef09fdf488a9d8ecc609e7a85
MD5 f9f9c6460e921c4561b22aae0c196ddb
BLAKE2b-256 994ef1c0b915ed706bbdecdac9aecc21bef53c053a2fe20d19569854a5604c7a

See more details on using hashes here.

Supported by

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