Skip to main content

A plugin to generate customizable jinja-based HTML reports in pytest

Project description

pytest-jinja is a plugin to generate customizable jinja-based HTML reports in pytest. It’s based on pytest-html, but changes its inner working completely by separating the results data collection and the report generation, allowing easy developent of custom HTML reports that can include any javascript or css.

License Python versions Issues

This version is a fork from [g-bon’s pytest-jinja](https://github.com/g-bon/pytest-jinja).


Requirements

You will need the following prerequisites in order to use pytest-html:

  • Python 3.10

Installation

You can install “pytest-jinja” via pip from PyPI:

$ pip install pytest-jinja

Usage

  • if no template is specified a default template is used. The default template looks almost identical to pytest-html:

    $ pytest testcase --report=test_report.html
  • or you can pass your own template, pytest-jinja will render your template passing in the report data as jinja variables:

    $ pytest testcase --report=test_report.html --template=my_template.html

Creating a custom template

You can create your own template by simply creating any template. The report data is “passed” to the page as a single object called report. The attributes of this object contain all the necessary report data.

Template Example

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Test Report - {{ report.time_report_generation }}</title>
</head>
<body>
<h1>Test Report - {{ report.time_report_generation }} </h1>

<h2>Environment</h2>
<table id="environment">
    {% for name,value in report.environment.items() %}
    <tr>
        <td>{{ name }}</td>
        <td>{{ value }}</td>
    </tr>
    {% endfor %}
</table>

<h2>Summary</h2>
<p>{{ report.tests_count }} tests ran in {{ report.duration | round(2)}} seconds. </p>

<h2>Results</h2>
<table>
    {% for r in report.results %}
    <tr>
        <td>{{ r.test_id }}</td>
        <td>{{ r.outcome }}</td>
        <td><strong>{{ r.time|round(5) }}s</strong></td>
    </tr>
    {% endfor %}
</table>

</body>
</html>

Another Template Example

{{ report | json }}

Available Report Data

report.tests_count : the total number of tests executed (int)

report.errors : the number of errors (int)

report.failed : the number of failed tests (int)

report.passed : the number of passed tests (int)

report.skipped : the number of skipped tests (int)

report.xfailed : the number of expected failures (int)

report.xpassed: the number of unexpected passes (int)

report.rerun: the number of reruns (int)

report.duration : the test session duration in seconds (float)

report.time_report_generation : date and time of report generation (str)

report.environment: metadata on tests execution (dict)

report.results: the test results data (Object with attributes test_id, time, outcome, stacktrace, config)

report.report_path: report path passed via command line (pathlib.Path)

report.template_path: template path passed via command line (pathlib.Path)

Contributing

Contributions are very welcome. Tests can be run with tox.

License

Distributed under Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. “pytest-jinja” is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.

This pytest plugin was generated with Cookiecutter along with @hackebrot’s cookiecutter-pytest-plugin template.

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-jinja-0.1.3.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

pytest_jinja-0.1.3-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest-jinja-0.1.3.tar.gz.

File metadata

  • Download URL: pytest-jinja-0.1.3.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for pytest-jinja-0.1.3.tar.gz
Algorithm Hash digest
SHA256 a88ebadf724ec00cb3f8aba52a775f32714655a83e8425b317f1e8a645aeb8bf
MD5 9cf0042e3b79146a27964c4aa8ccecb3
BLAKE2b-256 0698ce113349113ee64d48ba02b11ee783ad1cfd600423c613a69ce40f9bb880

See more details on using hashes here.

File details

Details for the file pytest_jinja-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_jinja-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 911aeed2eaa41b6824a74ddafc5823fb564ca64b34450f311adef47435174755
MD5 5da5259c62e9adb873eb3fd93ee8dc69
BLAKE2b-256 20ac3341c0113ac2e775ebec691c1c36e77e3528138aefc947b508ef105293bf

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