测试名称的子字符串匹配



要执行包含其名称中字符串的测试,我们可以使用以下语法:

pytest -k <substring> -v

-k <substring> 表示在测试名称中搜索的子字符串。

现在,运行以下命令:

pytest -k great -v

这将执行所有包含单词“great”的测试名称。在本例中,它们是test_greater()test_greater_equal()。请参阅下面的结果。

test_compare.py::test_greater FAILED
test_compare.py::test_greater_equal PASSED
============================================== FAILURES 
==============================================
____________________________________________ test_greater 
____________________________________________
def test_greater():
num = 100
>  assert num > 100
E  assert 100 > 100
test_compare.py:3: AssertionError
========================== 1 failed, 1 passed, 3 deselected in 0.07 seconds 
==========================

此处在结果中,我们可以看到 3 个测试未被选中。这是因为这些测试名称不包含单词great

注意 - 测试函数的名称仍应以“test”开头。

广告