Pytest系列(11)- 失败重跑插件pytest-rerunfailures的详细使用

简介: Pytest系列(11)- 失败重跑插件pytest-rerunfailures的详细使用

如果你还想从头学起Pytest,可以看看这个系列的文章哦!

https://www.cnblogs.com/poloyy/category/1690628.html

 

环境前提


以下先决条件才能使用pytest-rerunfailures

  • Python 3.5, 最高 3.8, or PyPy3
  • pytest 5.0或更高版本

 

安装插件


pip3 install pytest-rerunfailures -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

 

提前了解重点


命令行参数:--reruns n(重新运行次数),--reruns-delay m(等待运行秒数)

装饰器参数:reruns=n(重新运行次数),reruns_delay=m(等待运行秒数)

 

重新运行所有失败的用例


要重新运行所有测试失败的用例,使用 --reruns 命令行选项,并指定要运行测试的最大次数:

pytest --reruns 5 -s

知识点

运行失败的 fixture 或 setup_class 也将重新执行

 

添加重新运行的延时

要在两次重试之间增加延迟时间,使用 --reruns-delay 命令行选项,指定下次测试重新开始之前等待的秒数

pytest --reruns 5 --reruns-delay 10 -s

 

重新运行指定的测试用例


要将单个测试用例添加flaky装饰器 @pytest.mark.flaky(reruns=5) ,并在测试失败时自动重新运行,需要指定最大重新运行的次数

 

小栗子

import pytest
@pytest.mark.flaky(reruns=5)
def test_example():
    import random
    assert random.choice([True, False, False])


执行结果

collecting ... collected 1 item
11_reruns.py::test_example RERUN                                         [100%]
11_reruns.py::test_example PASSED                                        [100%]
========================= 1 passed, 1 rerun in 0.05s ==========================


同样的,这个也可以指定重新运行的等待时间

@pytest.mark.flaky(reruns=5, reruns_delay=2)

def test_example():

   import random

   assert random.choice([True, False, False])

 

注意事项

如果指定了用例的重新运行次数,则在命令行添加 --reruns 对这些用例是不会生效的

 

兼容性问题


  • 不可以和fixture装饰器一起使用: @pytest.fixture()
  • 该插件与pytest-xdist的 --looponfail 标志不兼容
  • 该插件与核心--pdb标志不兼容
相关文章
|
7月前
pytest添加自定义参数
pytest添加自定义参数
214 0
|
测试技术 Python
Pytest系列(16)- 分布式测试插件之pytest-xdist的详细使用
Pytest系列(16)- 分布式测试插件之pytest-xdist的详细使用
654 0
|
安全 测试技术 索引
Pytest系列(17)- pytest-xdist分布式测试的原理和流程
Pytest系列(17)- pytest-xdist分布式测试的原理和流程
488 0
|
测试技术
29-pytest-运行上次失败用例
29-pytest-运行上次失败用例
|
测试技术 Python
02-pytest-用例运行规则
02-pytest-用例运行规则
|
测试技术
14-pytest-标记失败xfail使用
14-pytest-标记失败xfail使用
|
测试技术
22-pytest-allure.step()测试步骤描述
22-pytest-allure.step()测试步骤描述
Pytest框架批量安装插件解析
Pytest框架批量安装插件解析:新建一个txt的文件,将常用插件放在该文件中;在Terminal控制台执行安装命令:pip install -r requirements.txt(注意:命令中的文件名一定要和新建的文件名保持一致,否则会报错);验证是否安装成功命令:pytest --version,显示pytest的版本说明安装成功
136 0
Pytest框架批量安装插件解析
|
测试技术 Python
pytest学习和使用10-Pytest中的测试用例如何跳过执行?
pytest学习和使用10-Pytest中的测试用例如何跳过执行?
103 0
pytest学习和使用10-Pytest中的测试用例如何跳过执行?
pytest学习和使用19-pytest断言失败后,怎样保持后续的断言继续执行?(pytest-assume)
pytest学习和使用19-pytest断言失败后,怎样保持后续的断言继续执行?(pytest-assume)
134 0