Pytest學習(十二)-生成HTML報告插件之pytest-html的使用

環境前提

Python3.6+css

安裝插件

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

快速入門

pytest --html=report.html

會在當前目錄下建立一個report.html的測試報告
html

爲何你的報告沒有樣式

上面命令生成的報告,css是獨立的,分享報告的時候樣式會丟失,爲了更好的分享發郵件展現報告,能夠把css樣式合併到html裏測試

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

測試報告:
插件

注意事項

  • 在將文件或連接添加到獨立報告時,插件會發出warnings;
  • 在html測試報告中可能沒法按預期顯示文件或連接

系列參考文章:
https://www.cnblogs.com/poloyy/category/1690628.htmlcode

相關文章
相關標籤/搜索