失败重运行 "--reruns","2","--reruns-delay","5"

安装与pytest集成的插件:pip3 install pytest-rerunfailures
针对所有用例失败重新运行的话,就不需要mark标记函数,执行main运行的时候加上--参数 命令行运行参数:pytest -- reruns 重试次数 (--reruns-delay 次数之间间隔)              pytest --reruns 2 运行失败的用例可以执行2次              pytest --reruns 2 --reruns-delay 5 运行失败的用例可以执行2次,每次间隔5秒 pytest.main(["-v","-m","demo","--reruns","2","--reruns-delay","5","--alluredir=../OutPuts/allure-results"])
上一篇:C# —— 点击按钮动态打开ComboBox


下一篇:pytest学习系列_插件之失败重试