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
測試報告:
插件
系列參考文章:
https://www.cnblogs.com/poloyy/category/1690628.htmlcode