实现Pytest测试用例按顺序循环执行多次

要实现测试用例按顺序循环执行多次,可以使用 pytest 的自定义装饰器或插件。这里有两种方法可以实现这个需求:

方法一:使用 pytest-repeat 插件

pytest-repeat 插件允许你重复执行测试用例。你可以使用 --count 参数来指定每个测试用例的执行次数。但为了实现指定顺序的循环执行,需要手动控制测试用例的执行顺序。

安装插件

首先,安装 pytest-repeat 插件:

bash 复制代码
pip install pytest-repeat
示例代码

假设有三个测试用例 test_case1, test_case2, 和 test_case3,你可以这样写:

python 复制代码
import pytest

@pytest.mark.repeat(2)
def test_case1():
    print("Executing test_case1")

@pytest.mark.repeat(2)
def test_case2():
    print("Executing test_case2")

@pytest.mark.repeat(2)
def test_case3():
    print("Executing test_case3")
执行命令

执行以下命令来运行测试用例:

bash 复制代码
pytest --count=2

这样,每个测试用例将依次执行两次。

方法二:自定义循环逻辑

如果你希望完全控制循环执行的逻辑,可以在一个测试用例中手动调用其他测试用例。

示例代码
python 复制代码
import pytest

def test_case1():
    print("Executing test_case1")

def test_case2():
    print("Executing test_case2")

def test_case3():
    print("Executing test_case3")

def test_repeat_cases():
    for _ in range(2):  # 控制循环次数
        test_case1()
        test_case2()
        test_case3()
执行命令

直接运行这个测试脚本:

bash 复制代码
pytest -s

-s 参数允许在控制台输出打印内容。

方法三:使用 pytestpytest_generate_tests 动态生成测试用例

通过 pytestpytest_generate_tests 钩子函数可以动态生成测试用例,按顺序执行,并且可以控制循环次数。

示例代码
python 复制代码
import pytest

def test_case(case_number):
    print(f"Executing test_case{case_number}")

def pytest_generate_tests(metafunc):
    if "case_number" in metafunc.fixturenames:
        for _ in range(2):  # 控制循环次数
            metafunc.parametrize("case_number", [1, 2, 3], indirect=False)
执行命令

直接运行这个测试脚本:

bash 复制代码
pytest -s

输出结果

plaintext 复制代码
Executing test_case1
Executing test_case2
Executing test_case3
Executing test_case1
Executing test_case2
Executing test_case3

结论

这些方法可以根据需求来选择。如果你需要严格的顺序和循环控制,方法二和方法三更灵活;如果你需要简单的重复执行,pytest-repeat 插件会更方便。

相关推荐
qq_433716951 天前
测试分层:减少对全链路回归依赖的探索!
自动化测试·软件测试·功能测试·测试工具·回归·pytest·postman
测试老哥2 天前
需求不明确时如何设计测试用例?
自动化测试·软件测试·python·功能测试·测试工具·职场和发展·测试用例
程序员雷叔2 天前
外包功能测试就干了4周,技术退步太明显了。。。。。
功能测试·测试工具·面试·职场和发展·单元测试·测试用例·postman
程序员小雷2 天前
应对自动化测试中的异步操作:策略与实践
功能测试·selenium·测试工具·jmeter·单元测试·测试用例·postman
Dreams°1232 天前
【新手入门软件测试--该如何分辨前后端问题及如何定位日志--前后端问题分辨与日志定位查询问题】
功能测试·测试工具·测试用例
开心呆哥2 天前
【Android Wi-Fi 操作命令指南】
android·python·pytest
互联网杂货铺4 天前
软件测试八股文个人总结
自动化测试·软件测试·功能测试·测试工具·面试·职场和发展·测试用例
小码哥说测试4 天前
测试分层:减少对全链路回归依赖的探索!
自动化测试·软件测试·人工智能·测试工具·appium·pytest·postman
帅得不敢出门5 天前
Python+Appium+Pytest+Allure自动化测试框架-安装篇
python·appium·自动化·pytest·测试·allure
blues_C5 天前
Pytest-Bdd-Playwright 系列教程(5):仅执行测试用例的收集阶段
自动化测试·测试用例·pytest·bdd