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(代码片段