pytest入门到放弃20--HTML报告

插件:pytest-html

github源码: https://github.com/pytest-dev/pytest-html

安装:

pip install pytest-html -i https://pypi.tuna.tsinghua.edu.cn/simple

执行:

  命令行执行:  pytest --html=report\test.html

  独立显示(发送html报告后,CSS样式不会丢失):  pytest --html=report\test.html --self-contained-html

  失败重运行:  pytest --reruns 2 --reruns-delay 2 --html=report\test.html --self-contained-html

 

示例1(不加 --self-contained-html):

pytest.main([‘-s‘, ‘-q‘, ‘--reruns=2‘, ‘--reruns-delay=2‘, ‘--html=./report/report.html‘,  ‘test_demo_13_assert.py‘])  

运行后生成带css的报告:

pytest入门到放弃20--HTML报告

 

 示例2(html报告和CSS合并,独立显示):

pytest.main([‘-s‘, ‘-q‘, ‘--reruns=2‘, ‘--reruns-delay=2‘, ‘--html=./report/report.html‘, ‘--self-contained-html‘, ‘test_demo_13_assert.py‘])  

运行后独立显示:

pytest入门到放弃20--HTML报告

 

 

报告详情(duration持续时间,接口测试时可以分析接口响应时间)

pytest入门到放弃20--HTML报告

 

pytest入门到放弃20--HTML报告

上一篇:JS_0037:template 模板引擎使用


下一篇:ubuntu 在/etc/network/interfaces设置了dns-nameservers x.x.x.x 无效