Metadata-Version: 2.1
Name: pytest-testreport
Version: 1.0.0
Summary: UNKNOWN
Home-page: https://github.com/musen123/pytest-testreport
Author: MuSen
Author-email: musen_nmb@qq.com
Maintainer: testreport
Maintainer-email: musen_nmb@qq.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: pytest (>=3.5.0)

# pytest-testreport

### 1、pytest-testreport介绍

pytest-testreport是一个针对pytest的生成html报告的插件，使用起来非常简单，只需要再pytest.ini文件中做简单的配置即可实现html报告的生成

- 使用案例：安装该插件，在pytest.ini文件加入如下配置，即可实现生成html报告
```ini
[report]
title = 测试报告的标题
tester = 测试人员
desc = 测试报告的说明信息
```

-  开发者：柠檬班-木森,柠檬班—雨泽

email：musen_nmb@qq.com

### 2、安装pytest-testreport

pytest-testreport是基于python3.6开发的，安装前请确认你的python版本>3.6

安装命令

```pip install pytest-testreport```

### 3、使用文档：
https://testreport.readthedocs.io/en/latest/


