假设我有一个测试函数,它将参数化 record
作为字典,其中一个值是已经定义的夹具。
例如,我们有一个夹具:
@pytest.fixture
def a_value():
return "some_value"
和测试功能:
@pytest.mark.parametrize("record", [{"a": a_value, "other": "other_value"},
{"a": a_value, "another": "another_value"}])
def test_record(record):
do_something(record)
现在,我知道这可以通过将夹具传递给测试函数并相应地更新记录来解决,例如:
@pytest.mark.parametrize("record", [{"other": "other_value"},
{"another": "another_value"}])
def test_record(a_value, record):
record["a"] = a_value
do_something(record)
但是我想知道是否有一种方法可以在没有这种“解决方法”的情况下做到这一点,当我有许多已经定义的装置并且我只想在传递给函数的每个参数化记录中使用它们时。
我已经检查过 this question ,尽管它似乎并不完全适合我的情况。从那里的答案中找不到正确的用法。
最佳答案
一种解决方案是创建 record
作为夹具而不是使用 parametrize
并接受 a_value
作为参数:
@pytest.fixture
def record(a_value):
return {
'a': a_value,
'other': 'other_value',
}
关于python - 在 pytest.mark.parametrize 中使用夹具,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54078436/