Pytest不识别添加的选项

2022-03-01 00:00:00 python pytest

问题描述

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

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=***

解决方案

这是pytest本身的限制。查看docs:

请注意,pytest在工具启动时不会在更深的嵌套子目录中找到conftest.py文件。通常,最好将conftest.py文件保存在顶级测试或项目根目录中。

一种解决方案是创建外部插件,或将选项移到更靠近根的conftest文件中。

相关文章