skillfed

pytest-html-reporter

Generates a static html report based on pytest framework

pytest-html-reporter v0.2.9 83.7K downloads/30d#14,052 on PyPI128
Permissive license MIT AGING released

What it is and what it does

pytest-html-reporter is a pytest plugin that generates static HTML reports from test execution results. It runs as a pytest command-line extension and produces a self-contained HTML file showing test outcomes, execution trends, suite highlights, and detailed test information. The plugin supports attaching screenshots on test failure (useful for UI testing with Selenium), test rerun tracking, and historical report archiving. It has no runtime dependencies and integrates directly into pytest's reporting pipeline via command-line flags or pytest.ini configuration.

The package is straightforward to use: install it, run pytest with `--html-report` to specify output location, and optionally add `--title` to customize the report heading. For screenshot capture, you import the `attach` function and call it with binary image data during test execution. The generated HTML is static and self-contained, suitable for sharing or archiving test results.

Use it for:

  • Generate shareable HTML test reports for CI/CD pipelines to track test execution history and trends over time.
  • Capture and embed screenshots in test reports when UI tests fail, for debugging and documentation.
  • Archive test results with customizable paths and filenames to organize reports by test suite or date.
  • Display test suite highlights and overview statistics in a single-page HTML report for stakeholder review.
  • Integrate with pytest.ini to standardize report generation across a team's test infrastructure.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Generates static HTML test reports from pytest test runs, with support for test history, screenshots on failure, and customizable report paths and titles.

Yes, with conditions. The package is lightweight, permissively licensed, and solves a real need for pytest users who want HTML reports. However, it has not been updated since 2022-02-13 and is marked as aging; before installing, verify that it works with your current pytest and Python versions. The lack of recent maintenance means unresolved issues may not be fixed.

Install

pytest-html-reporter on PyPI

pip

pip install pytest-html-reporter

uv

uv add pytest-html-reporter

poetry

poetry add pytest-html-reporter

Installing pytest-html-reporter

Before you install

High install friction; no runtime dependencies but the package has not been updated since 2022-02-13 and maintenance is marked as aging, though the repository remains active.

License in practice

MIT license (permissive) means you can use, modify, and distribute this package freely with minimal restrictions, provided you include the license notice.

Quickstart

pip install pytest-html-reporter

pytest tests/ --html-report=./report --title='Test Report'

For screenshots on failure:
from pytest_html_reporter import attach
attach(data=self.driver.get_screenshot_as_png())

Verify before relying

  • Whether the package works reliably with pytest versions released after 2022-02-13
  • Compatibility with modern Python versions beyond the stated >=3.5 requirement
  • Whether the aging maintenance status indicates unresolved bugs or compatibility issues

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.5)
Install friction high — source build required
Runtime dependencies none
Maintenance aging — 1,643 days since the last release
Last repo commit
First released
Downloads 83,731/month — #14,052 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pytest-html-reporter-0.2.9.tar.gz

Keywords: pytest, py.test, html, reporter, report

Framework :: PytestLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: PythonTopic :: Software Development :: Testing

Tags

pytest html report generatortest report html outputpytest test results visualizationhtml test reporterpytest report with screenshotstest execution report htmlpytest test history tracking
pytest-plugintest-reportinghtml-output

More Testing packages