py.test:错误:无法识别的参数

时间:2015-07-20 17:32:19

标签: python pytest

我的项目目录如下所示

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

我通过将以下代码放入conftest.py来添加命令行选项(--PALLADIUM_CONFIG)

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

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

奇怪的是:

如果我进入

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

1 个答案:

答案 0 :(得分:9)

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

  

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

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