目录
1、前言
在自动化测试的时候我们可能会遇到某些原因,如模块不稳定等,出现一些测试失败,此时我们想要针对单个用例或者单个模块重复执行多次,以确定测试失败的真正原因。在Pytest中可以通过插件pytest-repeat来实现。
安装方式:pip install pytest-repeat
2、--count参数使用
(一)在命令行或者main函数使用
pytest -s -v ./xxx.py --count=3
pytest.main(["-vs","xxx.py","--count=3"])
示例:- def test_1():
- print("测试1")
- assert True
- def test_2():
- print("测试2")
- assert False
- """
- 执行结果
- mark/repeat/repeat_count.py::test_1[1-3] 测试1
- PASSED
- mark/repeat/repeat_count.py::test_1[2-3] 测试1
- PASSED
- mark/repeat/repeat_count.py::test_1[3-3] 测试1
- PASSED
- mark/repeat/repeat_count.py::test_2[1-3] 测试2
- FAILED
- mark/repeat/repeat_count.py::test_2[2-3] 测试2
- FAILED
- mark/repeat/repeat_count.py::test_2[3-3] 测试2
- FAILED
- """
复制代码 (二)在全局配置文件中使用
在pytest.ini配置文件中addopts添加count参数- [pytest]
- addopts = -s -v --count 2
- testpaths = scripts
- python_files = test_*.py
- python_classes = Test*
- python_functions = test*
复制代码 示例:- def test_1():
- print("测试1")
- assert True
- def test_2():
- print("测试2")
- assert False
- """
- 执行结果
- mark/repeat/repeat_count.py::test_1[1-2] 测试1
- PASSED
- mark/repeat/repeat_count.py::test_1[2-2] 测试1
- PASSED
- mark/repeat/repeat_count.py::test_2[1-2] 测试2
- FAILED
- mark/repeat/repeat_count.py::test_2[2-2] 测试2
- FAILED
- """
复制代码 3、--repeat-scope参数使用
从上面的示例中可以看到测试1先执行了3次,然后测试2再执行3次,有些时候我们想整体执行3次,这就需要用到--repeat-scope参数。类似于fixture的scope也可以设置范围
- session:重复整个测试会话,即所有收集到的测试用例测试完成一次,再进行下一次测试
- module:重复整个模块,即模块内所有收集到的测试用例测试完成一次,再进行下一次测试
- class:重复所有类,即以每个类为集合所有测试用例测试完成一次,再进行下一次测试
- function:默认范围,重复所有函数和方法,即一个测试函数或方法重复执行完毕,再对下一个测试函数重复执行
测试代码:
- class TestClass_1:
- def test_method_1(self):
- print("类1测试方法1")
- def test_method_2(self):
- print("类1测试方法2")
- class TestClass_2:
- def test_method_1(self):
- print("类2测试方法1")
- def test_method_2(self):
- print("类2测试方法2")
复制代码
- 类级别执行
pytest -s -v xxx.py --count=2 --repeat_scope=class
- """
- 执行结果
- mark/repeat/repeat_scope.py::TestClass_1::test_method_1[1-2] 类1测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_1::test_method_2[1-2] 类1测试方法2
- PASSED
- mark/repeat/repeat_scope.py::TestClass_1::test_method_1[2-2] 类1测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_1::test_method_2[2-2] 类1测试方法2
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_1[1-2] 类2测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_2[1-2] 类2测试方法2
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_1[2-2] 类2测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_2[2-2] 类2测试方法2
- PASSED
- """
复制代码
- 模块级别执行
pytest -s -v xxx.py --count=2 --repeat-scope=module
- """
- 执行结果
- mark/repeat/repeat_scope.py::TestClass_1::test_method_1[1-2] 类1测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_1::test_method_2[1-2] 类1测试方法2
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_1[1-2] 类2测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_2[1-2] 类2测试方法2
- PASSED
- mark/repeat/repeat_scope.py::TestClass_1::test_method_1[2-2] 类1测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_1::test_method_2[2-2] 类1测试方法2
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_1[2-2] 类2测试方法1
- PASSED
- mark/repeat/repeat_scope.py::TestClass_2::test_method_2[2-2] 类2测试方法2
- PASSED
- """
复制代码 4、@pytest.mark.repeat(count)装饰器使用
还可以在测试代码中使用@pytest.mark.repeat(count)装饰器来标记需要重复执行的测试。- import pytest
- @pytest.mark.repeat(2)
- def test_1():
- print("测试函数1")
- def test_2():
- print("测试函数2")
- class TestClass:
- def test_1(self):
- print("类中测试方法1")
- @pytest.mark.repeat(3)
- def test_2(self):
- print("类中测试方法2")
- """
- 执行结果
- mark/repeat/repeat_mark.py::test_1[1-2] 测试函数1
- PASSED
- mark/repeat/repeat_mark.py::test_1[2-2] 测试函数1
- PASSED
- mark/repeat/repeat_mark.py::test_2 测试函数2
- PASSED
- mark/repeat/repeat_mark.py::TestClass::test_1 类中测试方法1
- PASSED
- mark/repeat/repeat_mark.py::TestClass::test_2[1-3] 类中测试方法2
- PASSED
- mark/repeat/repeat_mark.py::TestClass::test_2[2-3] 类中测试方法2
- PASSED
- mark/repeat/repeat_mark.py::TestClass::test_2[3-3] 类中测试方法2
- PASSED
- """
复制代码 注意:使用装饰器标记的重复执行用例不受参数执行的影响,即当上面例子在执行时使用--count=5,标记过的测试用例以装饰器标记次数为准,其他未标记的测试用例会执行5次。
5、结合参数x使重复执行在失败时停止
如果遇到间歇性bug,可以在命令中--count与-x结合使用,重复执行测试用例,直到测试失败停止。
pytest -vs -x xxx.py --count=100
这样将运行100次,一旦遇到失败就会停止。
参考:https://www.cnblogs.com/yoyoketang/p/9800961.html
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |