python——pytest对于失败的用例重新执行

时间:2024-04-02 19:41:29

python pytest自动化测试时,对于失败的用例可以重跑,这就避免了偶然性fail的影响

安装:

1、pip install pytest-rerunsfailures

2、如果需要html的测试报告,需要安装:pip install pytest-html

三种方式:

方法1:在python自动化项目根目录下新建pytest.ini,在配置文件中写入以下内容:

[pytest]
addpots = -vs --reruns 1 --reruns-delay 60

        其中:reruns为失败用例重跑的次数(此处为1次,也可以为2、3次),reruns-delay为间隔时间,单位为s

方法2:在想要重跑的用例前加上@pytest.mark.flaky(reruns=2,reruns-delay=2)

方法3:命令行参数:pytest --reruns 重试次数(--reruns-delay 次数之间间隔)

pytest --reruns 2 运行失败的用例可以执行2次
pytest --reruns 2 --reruns-delay5 运行失败的用例可以执行2次,每次间隔5s