我的conftest.py
文件中有一个具有三个参数的夹具:
@pytest.fixture(scope="session",
params=[(33, 303), (303, 3003), (3003, 300003)],
ids=["small", "medium", "large"])
def complete(request):
np.random.seed(1234567890)
return np.random.rand(*request.param)
现在在一个特定的长时间运行的测试功能上,我想跳过“大”的情况。
@pytest.mark.skipif(...)
def test_snafu(complete):
assert ...
这有可能吗?