pytest-07-html测试报告

Python 3.6+才能使用pytest-html

1、安装pytest-htm插件l:pip install pytest-html

2、打开cmd,cd到需要执行pytest用例的目录,执行指令:pytest --html=report.html

生成的报告会在当前脚本的同一路径

点击可查看报告内容

3、指定报告路径pytest --html=./report/report.html放在report文件夹里

但是此方式生成的报告,css是独立的,分享报告时,样式会丢失

4、把css样式合并到html里面:pytest --html=./report/report.html --self-contained-html

参考链接:https://github.com/pytest-dev/pytest-html

你可能感兴趣的:(pytest-07-html测试报告)