从 pytest_generate_tests() 获取参数化参数的 pytest 会话作用域固定装置

pytest session scoped fixture that takes parameterized argument from pytest_generate_tests()

下午好,

我有一个装置可以加载大量数据,这些数据将在一夜之间记录下来。然后将其用于分析数据不同方面的各种测试。

加载此数据需要相当长的时间,所以我只希望夹具 运行 一次并将相同的数据传递给每个测试。我读到这样做的方法是将夹具范围标记为会话然后问题是因为夹具接受通过 pytest_generate_tests() 传递的命令行参数(测试数据的位置)我得到以下错误: ScopeMismatch:您尝试使用 'session' 范围请求对象访问 'function' 范围夹具 'path',涉及工厂

这是一个简单的娱乐:

conftest.py

import pytest

def pytest_addoption(parser):
    parser.addoption("--path", action="store", required=True, help='Path to folder containing the data for the tests to inspect, e.g. ncom files.')


def pytest_generate_tests(metafunc):
    # This is called for every test. Only get/set command line arguments
    # if the argument is specified in the list of test "fixturenames".
    if "path" in metafunc.fixturenames:
        metafunc.parametrize("path", ['../temp/' + metafunc.config.getoption("--path")])

测试文件

import pytest

@pytest.fixture(scope='session')
def supply_data(path):
    data = path
    return data

def test_one(supply_data):
    assert supply_data=='a path', 'Failed'

任何人都可以建议如何使这项工作或更好的方法来实现我想要做的事情吗?

非常感谢

肖恩

如果我理解正确,您的路径在测试会话期间不会改变,因此从命令行参数读取夹具中的路径就足够了:

@pytest.fixture(scope='session')
def supply_data(request):
    path = '../temp/' + request.config.getoption("--path")
    data = read_data_from_path(path)
    yield data