pytest文档77 - parametrize 参数化跳过部分用例(pytest.param)


前言

pytest 参数化的时候,希望能跳过部分测试用例,可以用 pytest.param 来实现。

parametrize 参数化示例

parametrize 参数化

import pytest
"""
作者:上海-悠悠
python QQ交流群:730246532
联系微信/QQ: 283340479
"""

@pytest.mark.parametrize('input1, input2, expected', [
    ["a", "b", "ab"],
    ["1", "2", "12"],
    [2, 3, 5],
    [1, 3, 4],
    ])
def test_foo(input1, input2, expected):
    assert input1 + input2 == expected

运行结果

collected 4 items

..\..\..\..\..\demo\demo\aaa\test_x.py ....
total times: 0.13 seconds

================ 4 passed in 0.14s ==================

pytest.param 跳过用例

如果想跳过其中部分用例,可以用 pytest.param()来实现,给参数化中单个用例加 marks 标记 skip。

import pytest
"""
作者:上海-悠悠
python QQ交流群:730246532
联系微信/QQ: 283340479
"""

@pytest.mark.parametrize('input1, input2, expected', [
    ["a", "b", "ab"],
    ["1", "2", "12"],
    pytest.param(2, 3, 5, marks=pytest.mark.skip),
    [1, 3, 4],
    ])
def test_foo(input1, input2, expected):
    assert input1 + input2 == expected

运行结果

collected 4 items

..\..\..\..\..\demo\demo\aaa\test_x.py ..s
Test ignored..
total times: 0.14 seconds

============== 3 passed, 1 skipped in 0.14s ==============

运行结果可以看出1个 skipped 了。
报名咨询wx:283340479 (已报名的同学学习过程中有问题,都可以协助解决)


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM