标签:ima logs targe tar 原创 blog com 机制 bsp
需要安装 pytest - html 插件;
pip install pytest-html
二、生成 HTML 报告
if __name__ == ‘__main__‘: # 生成python-html报告 pytest.main([‘-s‘, ‘-v‘, ‘--html=OutPuts/reports/report.html‘])
生成测试报告:
打开测试报告:
三、其中可以结合 失败重运行机制:
import pytest if __name__ == ‘__main__‘: # 生成python-html报告 pytest.main([‘--reruns‘, ‘3‘, ‘--reruns-delay‘, ‘5‘, ‘-s‘, ‘-v‘, ‘--html=Outputs/reports/report.html‘])
如果看到控制台中看到 RRF 代表两次重运行,最后还是失败了
*******请大家尊重原创,如要转载,请注明出处:转载自:https://www.cnblogs.com/shouhu/,谢谢!!*******
标签:ima logs targe tar 原创 blog com 机制 bsp
原文地址:https://www.cnblogs.com/shouhu/p/12393144.html