skillfed

pytest-custom-report

Configure the symbols displayed for test outcomes

pytest-custom-report v1.0.1 188.5K downloads/30d#9,944 on PyPI12
Permissive license MIT Abandoned released

What it is and what it does

pytest-custom-report is a pytest plugin that replaces the default single-character and verbose outcome symbols with custom text or Unicode glyphs. By default, pytest shows test results as single letters (`.` for passed, `F` for failed, `s` for skipped, etc.); this plugin lets you override those with any character or string—commonly used for emoji like 💩 for failures or ✔ for passes—either via command-line flags or persistent configuration in pytest.ini.

The plugin hooks into pytest's terminal reporting and applies your custom symbols to both compact and verbose output modes. Configuration is straightforward: set options in a pytest config file or pass them as command-line arguments. The plugin is always loaded once installed but remains inert unless you define custom symbols, so it has minimal overhead if you don't use it.

Use it for:

  • Replace pytest's default letters with emoji or Unicode symbols to make test output more visually distinctive and easier to scan.
  • Customize verbose test output strings (e.g., `FAILED` → `OH CRAP`) for team-specific or humorous reporting.
  • Standardize test report appearance across a team by storing symbol choices in a shared pytest.ini.
  • Make CI/CD logs more readable by using distinctive glyphs for pass/fail outcomes in terminal output.

Worth the install?

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

A pytest plugin that lets you customize the symbols and strings displayed for test outcomes (passed, failed, skipped, etc.) in terminal reports.

Yes, if you want to customize pytest's terminal symbols and don't mind the lack of active maintenance. The plugin is simple, has no security vulnerabilities, and low install friction. However, be aware it is abandoned—test compatibility with your pytest version before relying on it in production, and do not expect updates if pytest introduces breaking changes.

Install

pytest-custom-report on PyPI

pip

pip install pytest-custom-report

uv

uv add pytest-custom-report

poetry

poetry add pytest-custom-report

Installing pytest-custom-report

Before you install

Low install friction with a pure-Python wheel. However, the package is abandoned—last release was 2019-01-30 and last commit 2022-04-07, with no active maintenance. It may work with current pytest versions but will not receive updates for breaking changes.

License in practice

MIT license is permissive; you can use, modify, and distribute this package freely with minimal restrictions.

Quickstart

pip install pytest-custom-report

# In pytest.ini:
[pytest]
report_failed = 💩
report_passed = ✔

# Then run:
pytest

Requires pytest to be installed. Terminal must support Unicode if using emoji or special characters.

Verify before relying

  • Whether the plugin remains compatible with recent pytest versions (no updates since 2019).
  • Whether all Unicode characters render correctly depends on terminal and font support, not the package itself.

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 1 — pytest
Maintenance abandoned — 2,753 days since the last release
Last repo commit
First released
Downloads 188,480/month — #9,944 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pytest_custom_report-1.0.1-py2.py3-none-any.whl

Framework :: PytestProgramming Language :: PythonProgramming Language :: Python :: 2Programming Language :: Python :: 3

Tags

pytest custom test symbolspytest report formattingcustomize pytest outputpytest emoji test resultspytest terminal report customization
pytest-pluginterminal-output

More Testing packages