Pytest系列(11)- 失败重跑插件rerunfailures

安装插件

安装方法:

pip install pytest-rerunfailures

使用方法

命令行参数

  • 指定重试次数: --reruns n
#表示运行失败的用例重新运行2次
pytest --reruns2
  • 指定间隔时间:--reruns-delay m
#表示运行失败的用例重新运行2次,执行时时间间隔为5s
pytest --reruns2 --reruns-delay 5

举个小栗子,代码如下

上一篇:Chrome开发者工具不完全指南:(三、性能篇)


下一篇:pytest.ini 包含中文报错:UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 32: illegal mul