Pytest 重复执行用例插件----pytest-repeat

前言

在自动化过程中,想要重复执行一条脚本,查看他的稳定性,如果是在unittest框架中,可能会使用for一直循环这条用例,但是当我们使用pytest框架后,我们就可以通过某些插件来实现这个功能了。今天介绍的这个插件就是重复执行某条用例或者某些用例。

pytest-repeat

pytest-repeat属于pytest中的一个第三方插件,它的作用就是重复执行某条用例或者某些用例。

安装: pip install pytest-repeat

使用方法:

复制代码
# 全部执行
pytest  XXX.py  --count=x  其中X表示执行多少次

# 需要在执行的用例上加入装饰器
@pytest.mark.repeat(count)   

重复执行多条用例

当我们想要重复执行多条用例的时候,可以直接通过执行某个py文件来进行多次执行

复制代码
class Test_01:

    def test_01(self):
        print('测试用例第一条')

    def test_02(self):
        print('测试用例第二条')

    def test_03(self):
        print('测试用例第三条')

通过在cmd中输入命令: pytest -s --count=3 # 3表示执行3遍 ,通过执行结果可以看出来,用例已经重复执行了3遍了。

重复执行单个用例

前面介绍使用方法的时候介绍了,如果想要重复执行单条用例的话,我们可以进行对其用例添加装饰器。

复制代码
import pytest


class Test_01:

    @pytest.mark.repeat(2)
    def test_01(self):
        print('测试用例第一条')

    def test_02(self):
        print('测试用例第二条')

    def test_03(self):
        print('测试用例第三条')

再次通过cmd进行执行,注意:这里不需要在添加次数,因为我们在装饰器中已经添加执行次数,如果添加次数的话,会将其他的用例也会重复执行

当然这里也可以进行对多个用例进行添加多条装饰器,这样的话,就能怼不同的用例执行不同的次数

复制代码
import pytest


class Test_01:

    @pytest.mark.repeat(2)
    def test_01(self):
        print('测试用例第一条')

    @pytest.mark.repeat(3)
    def test_02(self):
        print('测试用例第二条')

    @pytest.mark.repeat(4)
    def test_03(self):
        print('测试用例第三条')

直接进行执行,执行结果设置了重复执行多少条用例,就会执行多少条用例

相关推荐
菜鸟小贤贤1 分钟前
pyhton+yaml+pytest+allure框架封装-全局变量接口关联
开发语言·python·macos·自动化·pytest
菜鸟小贤贤10 小时前
pyhton+yaml+pytest+allure框架封装-全局变量渲染
python·macos·pytest·接口自动化·jinja2
菜鸟小贤贤21 小时前
python+pytest+allure利用fix实现接口关联
python·macos·自动化·pytest
测试老哥1 天前
基于Pytest接口自动化的requests模块项目实战以及接口关联方法
自动化测试·软件测试·python·测试工具·职场和发展·测试用例·pytest
小码哥说测试1 天前
python excel接口自动化测试框架!
自动化测试·软件测试·python·测试工具·测试用例·pytest·postman
_可乐无糖3 天前
pytest日志总结
pytest
菜鸟小贤贤3 天前
mac安装Pytest、Allure、brew
python·macos·自动化·pytest
qq_433716956 天前
Selenium+Pytest自动化测试框架 ------ 禅道实战
自动化测试·软件测试·selenium·单元测试·pytest·接口测试·压力测试
blues_C6 天前
Pytest-Bdd-Playwright 系列教程(11):场景快捷方式
自动化测试·pytest·bdd·playwright
幸运的星竹6 天前
pytest结合allure做接口自动化
自动化·pytest