Pytest之重运行和html报告生成

Pytest之重运行

安装rerunfailures插件

pip install pytest-rerunfailures

或者在file->setting->project interpreter中搜索下载

执行重运行

  • Dos命令:pytest --reruns 重试次数
pytest --reruns 5
#表示运行失败的用例可以重新运行5次
  • pytest --reruns 重试次数 --reruns-delay 次数之间的间隔设置秒)
Pytest --reruns 3 --reruns-delay 2
#表示失败的用例可以重新运行3次。第一次和第二次的间隔时间为2秒钟。

Pytest之html报告

安装pytest-html插件

Dos命令:

pip install pytest-html

执行pytest生成html报告

Dos命令:

pytest --html=文件名.html

html文件会生成在执行的当前文件夹

你可能感兴趣的:(pytest)