失败重跑插件pytest-rerunfailures
安装插件:
pip install pytest-rerunfailures -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
命令行参数:--reruns n(重新运行次数),--reruns-delay m(等待运行秒数)
装饰器参数:reruns=n(重新运行次数),reruns_delay=m(等待运行秒数)
【注】:如果采用命令行形式,则运行失败的fixture和setup_class也将重新执行
1、命令行参数举例:
重新运行最大次数5次,每次运行的间隔时间10秒
pytest --reruns 5 --reruns-delay 10 -s
2、装饰器参数举例:
指定某用例失败重跑
#coding=utf-8
import pytest
@pytest.mark.flaky(reruns=5,reruns_delay=3)
def test_rerun():
import random
assert random.choice([True,False,False])
def test_false():
import random
assert random.choice([True,False,False])
if __name__ == '__main__':
pytest.main(["-v","test_rerun.py"])
pytest.main(["-vs","test_rerun.py","--reruns=3","--reruns-delay=10"])
"""
test_rerun.py::test_true RERUN [ 50%]
test_rerun.py::test_true PASSED [ 50%]
test_rerun.py::test_false FAILED [100%]
"""
【注】:如果指定了用例的重新运行次数,则在命令行添加--reruns对这些用例是不会生效的
兼容性问题
不可以和fixture装饰器一起使用: @pytest.fixture()
该插件与pytest-xdist的 --looponfail 标志不兼容
该插件与核心--pdb标志不兼容
网友评论