Export your test suites and cases to JUnit report using decorators
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.
Table of contents
Installation
pip install junit-report
Usage
import pytest
from junit_report import JunitTestSuite, JunitTestCase, JunitFixtureTestCase
class TestSomeThing:
@pytest.fixture
@JunitFixtureTestCase()
def my_fixture(self):
# do stuff ..
@JunitTestCase()
def nested_case():
pass
yield nested_case
@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):
my_fixture()
self.my_first_test_case()
self.my_second_test_case("John")
Output
<?xml version="1.0" ?>
<testsuites disabled="0" errors="0" failures="1" tests="4" time="0.000301361083984375">
<testsuite disabled="0" errors="0" failures="1" name="TestSomeThing_test_suite" skipped="0" tests="4" time="0.000301361083984375">
<testcase name="my_fixture" time="0.000163" classname="TestSomeThing" class="fixture"/>
<testcase name="nested_case" time="0.000034" classname="module_name.test" class="function"/>
<testcase name="my_first_test_case" time="0.000017" classname="TestSomeThing" class="function"/>
<testcase name="my_second_test_case" time="0.000087" classname="TestSomeThing" class="function">
<failure type="ValueError" message="Invalid name John">Traceback (most recent call last): ... ValueError: Invalid name John</failure>
</testcase>
</testsuite>
</testsuites>
OS parameters used for configuration
Variable | Description |
---|---|
JUNIT_REPORT_DIR | Reports directory where the reports will be extracted. If it does not exist - create it. |
FAIL_ON_MISSING_SUITE | Decide whether the test will throw a SuiteNotExistError exception if a JunitTestCase does not have a suite parent. Available values: 'True', 'true', 'y', 'Y', '1' |
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.29.tar.gz
(10.7 kB
view hashes)
Built Distribution
Close
Hashes for junit_report-0.1.29-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4bcc581d0281f1d39321d0ef423759cdf6fe5210be95df9fceaf4003637e97e |
|
MD5 | de1de25d75d4665105d2c510614e6c27 |
|
BLAKE2b-256 | a960a7bbd01812bff75ce71f50171d5f852add0b5125e9c5f79120056a367433 |