python Pytest无法识别添加的选项

gopyfrb3  于 2023-06-20  发布在  Python
关注(0)|答案(1)|浏览(121)

我有一个项目目录如下所示

Projects/
....this_project/
........this_project/
............__init__.py
............code.py
............tests/
................conftest.py
................test_1.py
................test_2.py

我添加了一个命令行选项(--PALLADIUM_CONFIG),将以下代码放入conftest.py

def pytest_addoption(parser):
    parser.addoption("--PALLADIUM_CONFIG", action="store")

@pytest.fixture
def PALLADIUM_CONFIG(request):
    return request.config.getoption("--PALLADIUM_CONFIG")

奇怪的是:
如果我cd到

Projects/this_project/this_project

Projects/this_project/this_project/tests

然后逃跑

py.test --PALLADIUM_CONFIG=***

如果运行良好
但如果我把自己定位在

Projects/this_project

Projects

然后pytest给我错误

py.test: error: unrecognized arguments: --PALLADIUM_CONFIG=***
uajslkp6

uajslkp61#

这是pytest本身的局限性。看看Writing Plugins docs
请注意,pytestconftest.py在工具启动时不会在更深的嵌套子目录中找到www.example.com文件。通常最好将conftest.py文件保存在顶级测试或项目根目录中。
一个解决方案是创建一个外部插件,或者将选项移动到更靠近根目录的conftest文件中。

相关问题