Metadata-Version: 2.1
Name: pytest_html_report_merger
Version: 0.1.3
Summary: 
License: MIT
Author: dskard
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: beautifulsoup4 (>=4.11.1,<5.0.0)
Description-Content-Type: text/markdown

# pytest-html-report-merger
merge html reports generated by the pytest-html plugin

## Try it out

Generate sample test results in the `data/reports` directory:
```bash
make generate-results
```
The output will show some failed tests. This is expected.

Merge the reports:
```bash
make run
```

View the merged report:
```bash
firefox ./data/reports/merged.html
```

