No project description provided
Project description
junit-report
This Python package adds more control to your tests by decorating your functions and pytest fixtures and exporting them as JUnit xml.
Installation
pip install junit-report
Usage
import pytest
from junit_report import JunitTestSuite, JunitTestCase, JunitFixtureTestCase
class TestSomeThing:
@pytest.fixture
@JunitFixtureTestCase()
def my_fixture(self):
pass
@JunitTestCase()
def my_first_test_case(self):
pass
@JunitTestCase()
def my_second_test_case(self, name: str):
raise ValueError(f"Invalid name {name}")
@JunitTestSuite()
def test_suite(self, my_fixture):
self.my_first_test_case()
self.my_second_test_case("John")
Output
<?xml version="1.0" ?>
<?xml version="1.0" ?>
<testsuites disabled="0" errors="0" failures="1" tests="3" time="8.893013000488281e-05">
<testsuite disabled="0" errors="0" failures="1" name="TestSomeThing_test_suite" skipped="0" tests="3" time="8.893013000488281e-05">
<testcase name="my_fixture" time="0.000010" classname="TestSomeThing" class="fixture"/>
<testcase name="my_first_test_case" time="0.000007" classname="TestSomeThing" class="function"/>
<testcase name="my_second_test_case" time="0.000071" classname="TestSomeThing" class="function">
<failure type="ValueError" message="Invalid name John">Traceback ... ValueError(f"Invalid name {name}") ValueError: Invalid name John</failure>
</testcase>
</testsuite>
</testsuites>
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
junit-report-0.1.7.tar.gz
(7.1 kB
view hashes)
Built Distribution
Close
Hashes for junit_report-0.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b310a9f14d4f6ad07bdd157bba7ce5c8e44319c7a1d3fe8503a6b609bd374632 |
|
MD5 | 3b7a75c5a41c11a7879daf69cae699a2 |
|
BLAKE2b-256 | 41411139e1c4bb898c45396ca37f46396a9add22b4cb01f7cbc0e27ca5f2c6dd |