Metadata-Version: 2.1
Name: pytest-open-html
Version: 0.1.0
Summary: Auto-open HTML reports after pytest runs
Author: Your Name
Author-email: your@email.com
License: MIT
Classifier: Framework :: Pytest
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest>=6.0
Requires-Dist: pytest-html

# pytest-open-html

A pytest plugin to automatically open the HTML report in your browser after tests finish.

## Installation

```bash
pip install pytest-open-html



# 运行测试
pytest --html=report.html  # 应自动打开浏览器
pytest --html=report.html --no-open-html  # 应不打开
```
