当前位置:   article > 正文

八戒来探讨Pytest失败自动重跑的几种实现方法_pytest --repeat-scope不生效

pytest --repeat-scope不生效

一、写在前面

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、举个例子

  1. # -*- coding: utf-8 -*-
  2. # @Time    : 2020/11/29 8:52
  3. # @Author  : longrong.lang
  4. # @FileName: test_repeat.py
  5. # @Software: PyCharm
  6. # @Cnblogs :https://www.cnblogs.com/longronglang
  7. def test_repeat():
  8.     import random
  9.     num = random.randint(1, 9)
  10.     print(f"\n输出随机数:{num}")
  11.     assert num == 2

 2、结合失败重跑,并输出报告

使用示例如下:
# 使用下面哪条命令都可执行

  1. pytest --html=report.html --self-contained-html  -s --reruns=5 --count=3 test_repeat.py
  2. pytest --html=report.html --self-contained-html  -s --reruns=5 --count 3 test_repeat.py

执行效果如下:


生成html报告如下:

注意:

  • reruns=5:意思是失败重运行5次
  • count=3:意思是重复执行3次

3、仅重复执行

使用示例如下:

  1. # 使用下面哪条命令都可执行
  2. pytest --html=report.html --self-contained-html  -s --count=3 test_repeat.py
  3. 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)是一样的, 示例代码如下:

  1. @pytest.mark.repeat(3)
  2. def test_repeat2():
  3.     print("\n 测试脚本")

执行效果如下:

 五、repeat-scope的使用

命令行参数 **作用:**可以覆盖默认的测试用例执行顺序,类似fixture的scope参数

  • function:默认,范围针对每个用例重复执行,再执行下一个用例
  • class:以class为用例集合单位,重复执行class里面的用例,再执行下一个
  • module:以模块为单位,重复执行模块里面的用例,再执行下一个
  • session:重复整个测试会话,即所有测试用例的执行一次,然后再执行第二次

1、重复执行class里面的用例

即class中的测试方法,不存在混合情况,示例代码如下:

  1. # -*- coding: utf-8 -*-
  2. # @Time    : 2020/11/29 10:07
  3. # @Author  : longrong.lang
  4. # @FileName: test_repeatClass.py
  5. # @Software: PyCharm
  6. # @Cnblogs :https://www.cnblogs.com/longronglang
  7. class TestRepeatClass1(object):
  8.     def test_repeat1(self):
  9.         print("\n repeat 1。。。。。。。。。")
  10. class TestRepeatClass2(object):
  11.     def test_repeat2(self):
  12.         print("\n repeat 2。。。。。。。。。")

命令行执行:

pytest -s --count=2 --repeat-scope=class test_repeatClass.py

执行效果如下:

2、以模块为单位,重复执行模块里面的用例

 可以理解为混合,既有类也有单独的测试方法,示例代码如下:

  1. # -*- coding: utf-8 -*-
  2. # @Time    : 2020/11/29 10:07
  3. # @Author  : longrong.lang
  4. # @FileName: test_repeatClass.py
  5. # @Software: PyCharm
  6. # @Cnblogs :https://www.cnblogs.com/longronglang
  7. def test_repeat1():
  8.     print("test_repeat1")
  9. class TestRepeatClass1(object):
  10.     def test_repeat1(self):
  11.         print("\n repeat 1。。。。。。。。。")

执行命令:

pytest -s --count=2 --repeat-scope=moudle test_repeatClass.py

执行效果如下:

六、兼容性问题

pytest-repeat不能与unittest.TestCase测试类一起使用。无论--count设置多少,这些测试始终仅运行一次,并显示警告。

总结

在我的QQ技术交流群里(技术交流和资源共享,广告进来腿给你打断)

可以自助拿走,群号953306497(备注“csdn111”)群里的免费资料都是笔者十多年测试生涯的精华。还有同行大神一起交流技术哦。。

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/649656
推荐阅读
相关标签
  

闽ICP备14008679号