我所有的测试功能都在加载 conftest.py 中的夹具,即使它们不需要它

All my test functions are loading a fixture that is in the conftest.py, even when they don't need it

我的 conftest.py:

中有 2 个不同的测试文件和一些固定装置

1)"Test_dummy.py" 包含这个函数:

def test_nothing():
    return 1

2)"Test_file.py"。其中包含此功能:

def test_run(excelvalidation_io):
    dfInput, expectedOutput=excelvalidation_io
    output=run(dfInput)
    for key, df in expectedOutput.items():
        expected=df.fillna(0)
        real=output[key].fillna(0)
        assert expected.equals(real)

3)"conftest.py" 其中包含这些灯具:

def pytest_generate_tests(metafunc):
    inputfiles=glob.glob(DATADIR+"**_input.csv", recursive=False)
    iofiles=[(ifile, getoutput(ifile)) for ifile in 
    inputfiles]
    metafunc.parametrize("csvio", iofiles)
@pytest.fixture
def excelvalidation_io(csvio):
    dfInput, expectedOutput= csvio
    return(dfInput, expectedOutput)
@pytest.fixture
def client():
    client = app.test_client()
    return client

当我 运行 测试时,"Test_dummy.py" 还尝试加载 "excelvalidation_io" 夹具并生成错误:

In test_nothing: function uses no argument 'csvio'

我曾尝试将固定装置放在 "Test_file.py" 中,问题已解决,但我读到在 conftest 文件中找到所有固定装置是一个很好的做法。

函数pytest_generate_tests是一个特殊的函数,总是在执行任何测试之前调用,所以在这种情况下你需要检查metafunc接受名为 "csvio" 的参数并且不做任何其他事情,如:

def pytest_generate_tests(metafunc):
    if "excelvalidation_io" in metafunc.fixturenames:
        inputfiles=glob.glob(DATADIR+"**_input.csv", recursive=False)
        iofiles=[(ifile, getoutput(ifile)) for ifile in 
        inputfiles]
        metafunc.parametrize("csvio", iofiles)

Source