pytest-html是pytest的一个简单的报告插件,使用很方便。具体使用步骤如下:
第一步:安装pytest-html
pip install pytest-html
第二步:增加执行参数--html=report.html,明确输出html格式的报告,路径为report.html
# _*_coding:utf-8_*_
import pytest
class Test(object):
def test_01(self):
"""用例描述"""
print("用例1——橙子")
def test_02(self):
"""用例描述"""
print("用例2—— 苹果")
if __name__ == ‘__main__‘:
pytest.main([‘test01.py‘, ‘--html=report2.html‘])
不在脚本中写入参数,也可以在命令行中输入pytest test01.py --html=report.html也可以得到一样效果。只是在脚本上写参数会方便一点
报告展示: