Show HN: A zero-config HTML report plugin for Pytest (single file, CI-friendly)
I built a small Pytest plugin called pytest-reporter-plus that gives you better test reporting without touching your existing setup. If you use Pytest, this report just works.
Why I built it: Most pytest test reporting tools either:
Require tagging every test with decorators like @allure.*
Generate bloated dashboards and folders full of assets (charts, JS, CSS)
Need config/setup just to view basic results
or single page report just lacks the basic features like even search
I just wanted a: A single-page HTML No config, no dependencies, no folders to archive Good visibility into pass/fail/skipped/flaky Traceability: links, markers, test paths Optionally email the report Works in CI and local, right out of the box
What it does: Merges JSON reports (supports parallel runs)
Highlights flaky test retries
Shows stdout / stderr / logs clearly
Powerful filters (status, marker, time, untracked, etc.)
Copy-pasteable test paths
No dashboards. Just one HTML file you can drop in chat/email.
AND MANY MORE...
Let me know if you try it — happy to improve it with your feedback. If you find it useful, a star on GitHub would mean a lot: https://github.com/reach2jeyan/pytest-reporter-plus
No comments yet