gpt4 book ai didi

python - pytest - 将具有特定参数值的测试标记为 pytest.mark.skip

转载 作者:行者123 更新时间:2023-12-04 16:45:10 35 4
gpt4 key购买 nike

我的目标是将使用给定值参数化的测试标记为 @pytest.mark.skip

示例测试:

@pytest.mark.parametrize('param', [value_not_to_filter, value_to_filter])
def test_example(param):
...

我想从 conftest.py 中过滤 pytest_collection_modifyitems 中的测试:

def pytest_collection_modifyitems(config, items):
for item in items:
if value_to_filter in item.params: # this line is pseudocode, I'm looking for way to check if item was parametrized by some value
item.add_marker(pytest.mark.skip(reason='some reason'))

最佳答案

可以在这里使用 Hook ,但是代码不会很好,因为您必须深入了解 pytest 的内部结构和私有(private)访问器。跳过测试的 autouse fixture 是 IMO 一个更干净的解决方案:

@pytest.fixture(autouse=True)
def skip_some_tests(request):
if 'param' in request.fixturenames and request.getfixturevalue('param') == value_to_filter:
pytest.skip(reason='param is value_to_filter')

关于python - pytest - 将具有特定参数值的测试标记为 pytest.mark.skip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61495631/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com