赞
踩
pytest-repeat这个插件,可以帮助我们很好的解决自动化测试过程中的一些偶线性bug,但前提是,当前自动化脚本是独立的,不依赖任何其他脚本。
个人觉得还是失败重运行的一种体现,就和TestNG是一样的,下面我们来一起感受下这个插件的使用吧。
py.test版本 ≥ 2.8
Python 2.7、3.4+
pip3 install pytest-repeat -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
结合《生成HTML报告插件之pytest-html的使用》这篇文章,还是结合输出的html报告来看比较直观。
1、举个例子
- # -*- coding: utf-8 -*-
- # @Time : 2020/11/29 8:52
- # @Author : longrong.lang
- # @FileName: test_repeat.py
- # @Software: PyCharm
- # @Cnblogs :https://www.cnblogs.com/longronglang
-
- def test_repeat():
- import random
- num = random.randint(1, 9)
- print(f"\n输出随机数:{num}")
- assert num == 2
2、结合失败重跑,并输出报告
使用示例如下:
# 使用下面哪条命令都可执行
- pytest --html=report.html --self-contained-html -s --reruns=5 --count=3 test_repeat.py
- pytest --html=report.html --self-contained-html -s --reruns=5 --count 3 test_repeat.py
执行效果如下:
生成html报告如下:
注意:
3、仅重复执行
使用示例如下:
- # 使用下面哪条命令都可执行
- pytest --html=report.html --self-contained-html -s --count=3 test_repeat.py
- pytest --html=report.html --self-contained-html -s --count 3 test_repeat.py
执行效果如下:
很明显这里显示的只是重复执行3次
4、重复测试直到失败
这在我们实际测试中,就很受益了.
验证偶现问题,可以反复运行相同的测试脚本直到失败,将pytest的 -x 选项与pytest-repeat结合使用,以强制测试运行程序在第一次失败时停止。
使用示例如下:
py.test --count=1000 -x test_repeat.py
执行效果如下:
5、使用注解的形式来实现重复执行
使用 @pytest.mark.repeat(count)标记在测试方法即可,这和TestNg的 @Test(invocationCount = 5)是一样的, 示例代码如下:
- @pytest.mark.repeat(3)
- def test_repeat2():
- print("\n 测试脚本")
执行效果如下:
命令行参数 **作用:**可以覆盖默认的测试用例执行顺序,类似fixture的scope参数
1、重复执行class里面的用例
即class中的测试方法,不存在混合情况,示例代码如下:
- # -*- coding: utf-8 -*-
- # @Time : 2020/11/29 10:07
- # @Author : longrong.lang
- # @FileName: test_repeatClass.py
- # @Software: PyCharm
- # @Cnblogs :https://www.cnblogs.com/longronglang
- class TestRepeatClass1(object):
- def test_repeat1(self):
- print("\n repeat 1。。。。。。。。。")
-
- class TestRepeatClass2(object):
- def test_repeat2(self):
- print("\n repeat 2。。。。。。。。。")
命令行执行:
pytest -s --count=2 --repeat-scope=class test_repeatClass.py
执行效果如下:
2、以模块为单位,重复执行模块里面的用例
可以理解为混合,既有类也有单独的测试方法,示例代码如下:
- # -*- coding: utf-8 -*-
- # @Time : 2020/11/29 10:07
- # @Author : longrong.lang
- # @FileName: test_repeatClass.py
- # @Software: PyCharm
- # @Cnblogs :https://www.cnblogs.com/longronglang
-
- def test_repeat1():
- print("test_repeat1")
-
-
- class TestRepeatClass1(object):
- def test_repeat1(self):
- print("\n repeat 1。。。。。。。。。")
执行命令:
pytest -s --count=2 --repeat-scope=moudle test_repeatClass.py
执行效果如下:
pytest-repeat不能与unittest.TestCase测试类一起使用。无论--count设置多少,这些测试始终仅运行一次,并显示警告。
在我的QQ技术交流群里(技术交流和资源共享,广告进来腿给你打断)
可以自助拿走,群号953306497(备注“csdn111”)群里的免费资料都是笔者十多年测试生涯的精华。还有同行大神一起交流技术哦。。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。