繁体   English   中英

我的所有测试函数都在加载conftest.py中的一个fixture,即使他们不需要它

[英]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)

资源

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM