Pytest学习(十二)-生成HTML报告插件之pytest-html的使用

前端之家收集整理的这篇文章主要介绍了Pytest学习(十二)-生成HTML报告插件之pytest-html的使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

环境前提

Python3.6+

安装插件

pip3 install pytest-html -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

快速入门

pytest --html=report.html

会在当前目录下创建一个report.html的测试报告

为什么你的报告没有样式

上面命令生成的报告,css是独立的,分享报告的时候样式会丢失,为了更好的分享邮件展示报告,可以把css样式合并到html里

pytest --html=report.html --self-contained-html

测试报告:

注意事项

系列参考文章
https://www.cnblogs.com/poloyy/category/1690628.html

原文链接:/pytest/992214.html

猜你在找的Pytest相关文章