pytest-Mark数据驱动

Posted cainiaoxiansheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest-Mark数据驱动相关的知识,希望对你有一定的参考价值。

数据驱动

import pytest

@pytest.mark.parametrize(("a", "b", "expected"), [
    [1, 2, 3],
    [10, 11, 21],
    [1, 1, 1],
])
def test_1(a, b, expected):
    assert a + b == expected

if __name__ == "__main__":
    pytest.main(["-v"])
==================================
test_pytest.py::test_1[1-2-3] PASSED        [ 33%]
test_pytest.py::test_1[10-11-21] PASSED     [ 66%]
test_pytest.py::test_1[1-1-1] FAILED        [100%]

 

以上是关于pytest-Mark数据驱动的主要内容,如果未能解决你的问题,请参考以下文章

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段

如何运用领域驱动设计 - 值对象

python selenium片段+网络驱动程序

sh HBA和驱动器固件闪烁片段

MongoDB PHP

C语言精华知识:表驱动法编程实践