pytest plugin for generating HTML reports
Project description
pytest-html is a plugin for pytest that generates a HTML report for the test results.
Requirements
You will need the following prerequisites in order to use pytest-html:
Python 2.7, 3.6, PyPy, or PyPy3
pytest 2.7 or newer
Installation
To install pytest-html:
$ pip install pytest-html
Then run your tests with:
$ pytest --html=report.html
ANSI codes
Note that ANSI code support depends on the ansi2html package. Due to the use of a less permissive license, this package is not included as a dependency. If you have this package installed, then ANSI codes will be converted to HTML in your report.
Creating a self-contained report
In order to respect the Content Security Policy (CSP), several assets such as CSS and images are stored separately by default. You can alternatively create a self-contained report, which can be more convenient when sharing your results. This can be done in the following way:
$ pytest --html=report.html --self-contained-html
Enhancing reports
Environment
The Environment section is provided by the pytest-metadata, plugin, and can be accessed
via the pytest_configure hook:
def pytest_configure(config):
config._metadata['foo'] = 'bar'
Extra content
You can add details to the HTML reports by creating an ‘extra’ list on the report object. Here are the types of extra content that can be added:
Type |
Example |
|---|---|
Raw HTML |
extra.html('<div>Additional HTML</div>') |
extra.json({'name': 'pytest'}) |
|
Plain text |
extra.text('Add some simple Text') |
URL |
extra.url('http://www.example.com/') |
Image |
extra.image(image, mime_type='image/gif', extension='gif') |
There are also convenient types for several image formats:
Image format |
Example |
|---|---|
PNG |
extra.png(image) |
JPEG |
extra.jpg(image) |
SVG |
extra.svg(image) |
The following example adds the various types of extras using a
pytest_runtest_makereport hook, which can be implemented in a plugin or
conftest.py file:
import pytest
@pytest.mark.hookwrapper
def pytest_runtest_makereport(item, call):
pytest_html = item.config.pluginmanager.getplugin('html')
outcome = yield
report = outcome.get_result()
extra = getattr(report, 'extra', [])
if report.when == 'call':
# always add url to report
extra.append(pytest_html.extras.url('http://www.example.com/'))
xfail = hasattr(report, 'wasxfail')
if (report.skipped and xfail) or (report.failed and not xfail):
# only add additional html on failure
extra.append(pytest_html.extras.html('<div>Additional HTML</div>'))
report.extra = extra
Modifying the results table
You can modify the columns by implementing custom hooks for the header and
rows. The following example conftest.py adds a description column with
the test function docstring, adds a sortable time column, and removes the links
column:
from datetime import datetime
from py.xml import html
import pytest
@pytest.mark.optionalhook
def pytest_html_results_table_header(cells):
cells.insert(2, html.th('Description'))
cells.insert(0, html.th('Time', class_='sortable time', col='time'))
cells.pop()
@pytest.mark.optionalhook
def pytest_html_results_table_row(report, cells):
cells.insert(2, html.td(report.description))
cells.insert(1, html.td(datetime.utcnow(), class_='col-time'))
cells.pop()
@pytest.mark.hookwrapper
def pytest_runtest_makereport(item, call):
outcome = yield
report = outcome.get_result()
report.description = str(item.function.__doc__)
You can also remove results by implementing the
pytest_html_results_table_row hook and removing all cells. The
following example removes all passed results from the report:
import pytest
@pytest.mark.optionalhook
def pytest_html_results_table_row(report, cells):
if report.passed:
del cells[:]
The log output and additional HTML can be modified by implementing the
pytest_html_results_html hook. The following example replaces all
additional HTML and log output with a notice that the log is empty:
import pytest
@pytest.mark.optionalhook
def pytest_html_results_table_html(report, data):
if report.passed:
del data[:]
data.append(html.div('No log output captured.', class_='empty log'))
Screenshots
Resources
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest-html-1.14.0.tar.gz.
File metadata
- Download URL: pytest-html-1.14.0.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d35d1c6431329458f9d45cc2f51456a9365c82ccae629e5c5b3f08f2a8b89cf
|
|
| MD5 |
9623ab92265990cbc516f0a3aed540e1
|
|
| BLAKE2b-256 |
e8fba9512d4fc7d0dd74866d83ef86b11ad5c2f989cf6f555a6883921a53f479
|
File details
Details for the file pytest_html-1.14.0-py2.py3-none-any.whl.
File metadata
- Download URL: pytest_html-1.14.0-py2.py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcd90a13d41abcc69a0388bf5da8b81c78ed07f92789f8058a1b9da6d2cedb59
|
|
| MD5 |
88a747adf7875d9e451ee16f7dede101
|
|
| BLAKE2b-256 |
f64edc2f4676ec207eaca2df11e1ce008ae3737057b0a128e0fb8ee442396e31
|