当来自 tox 运行 时无法找到夹具 "mocker" (pytest-mock)
Unable to find fixture "mocker" (pytest-mock) when running from tox
我一直在使用 pytest-mock 库来模拟 pytest。当我尝试使用 tox
命令 运行 测试时,出现以下错误:
...
tests/test_cli.py ....EEEE
...
file /path/to/test_cli.py, line 63
def test_cli_with_init_cmd_fails_with_db_error(runner, mocker, context):
E fixture 'mocker' not found
> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, context, cov, doctest_namespace, fs, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, requests_mock, runner, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory
> use 'pytest --fixtures [testpath]' for help on them.
但是,当我尝试从我的 venv 中直接使用 pytest 运行 测试时,一切都按预期进行。
$ py.test --cov esmigrate --cov-report term-missing
...
platform linux -- Python 3.8.5, pytest-6.1.1, py-1.9.0, pluggy-0.13.1
rootdir: /path/to/project/root, configfile: tox.ini
plugins: cov-2.10.1, pyfakefs-4.0.2, mock-3.3.1, requests-mock-1.8.0
collected 50 items
tests/test_cli.py ........ [ 16%]
tests/test_contexts/test_context_config.py ... [ 22%]
tests/test_internals/test_db_manager.py .......... [ 42%]
tests/test_internals/test_glob_loader.py ..... [ 52%]
tests/test_internals/test_http_handler.py ....... [ 66%]
tests/test_internals/test_script_parser.py ................. [100%]
...
这是st运行ge,因为,我在我的requirements.txt
文件中添加了pytest-mock
,它用于在venv中安装依赖项,我添加了这个文件作为 tox testenv 的依赖项。这是我的 tox.ini
文件的内容。
[tox]
envlist=py36, py37, py38, flake8
[pytest]
filterwarnings =
error::DeprecationWarning
error::PendingDeprecationWarning
[flake8]
max-line-length = 120
select = B,C,E,F,W,T4,B9,B950
ignore = E203,E266,E501,W503,D1
[testenv]
passenv=USERNAME
commands=py.test --cov esmigrate {posargs} --cov-report term-missing
deps= -rrequirements.txt
[testenv:flake8]
basepython = python3.8
deps =
flake8
commands =
flake8 esmigrate tests
requirements.txt
文件的快照
...
pyfakefs==4.0.2
pyparsing==2.4.7
pyrsistent==0.17.3
pytest==6.1.1
pytest-cov==2.10.1
pytest-mock==3.3.1
PyYAML==5.3.1
...
当 运行 来自 travis-ci
时,这也不会导致任何问题,但我想知道这里的问题是什么以及我做错了什么。 tox-env 是否无法安装 pytest-mock,或者“mocker”fixture 是否被其他东西遮住了?
tox 当前(虽然这计划在(撰写本文时)当前重写中进行改进)如果它不管理更改的文件(例如 requirements.txt / setup.py)
相关问题可以看我的question and workarounds
这里的核心问题是,如果您不在 tox.ini
中直接内联管理 tox 环境依赖项,它不会注意到更改(例如从 requirements.txt
添加/删除依赖项),因此您会需要 运行 使用 --recreate
标记来反映这些变化
免责声明:我是目前的 tox 维护者之一
我一直在使用 pytest-mock 库来模拟 pytest。当我尝试使用 tox
命令 运行 测试时,出现以下错误:
...
tests/test_cli.py ....EEEE
...
file /path/to/test_cli.py, line 63
def test_cli_with_init_cmd_fails_with_db_error(runner, mocker, context):
E fixture 'mocker' not found
> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, context, cov, doctest_namespace, fs, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, requests_mock, runner, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory
> use 'pytest --fixtures [testpath]' for help on them.
但是,当我尝试从我的 venv 中直接使用 pytest 运行 测试时,一切都按预期进行。
$ py.test --cov esmigrate --cov-report term-missing
...
platform linux -- Python 3.8.5, pytest-6.1.1, py-1.9.0, pluggy-0.13.1
rootdir: /path/to/project/root, configfile: tox.ini
plugins: cov-2.10.1, pyfakefs-4.0.2, mock-3.3.1, requests-mock-1.8.0
collected 50 items
tests/test_cli.py ........ [ 16%]
tests/test_contexts/test_context_config.py ... [ 22%]
tests/test_internals/test_db_manager.py .......... [ 42%]
tests/test_internals/test_glob_loader.py ..... [ 52%]
tests/test_internals/test_http_handler.py ....... [ 66%]
tests/test_internals/test_script_parser.py ................. [100%]
...
这是st运行ge,因为,我在我的requirements.txt
文件中添加了pytest-mock
,它用于在venv中安装依赖项,我添加了这个文件作为 tox testenv 的依赖项。这是我的 tox.ini
文件的内容。
[tox]
envlist=py36, py37, py38, flake8
[pytest]
filterwarnings =
error::DeprecationWarning
error::PendingDeprecationWarning
[flake8]
max-line-length = 120
select = B,C,E,F,W,T4,B9,B950
ignore = E203,E266,E501,W503,D1
[testenv]
passenv=USERNAME
commands=py.test --cov esmigrate {posargs} --cov-report term-missing
deps= -rrequirements.txt
[testenv:flake8]
basepython = python3.8
deps =
flake8
commands =
flake8 esmigrate tests
requirements.txt
文件的快照
...
pyfakefs==4.0.2
pyparsing==2.4.7
pyrsistent==0.17.3
pytest==6.1.1
pytest-cov==2.10.1
pytest-mock==3.3.1
PyYAML==5.3.1
...
当 运行 来自 travis-ci
时,这也不会导致任何问题,但我想知道这里的问题是什么以及我做错了什么。 tox-env 是否无法安装 pytest-mock,或者“mocker”fixture 是否被其他东西遮住了?
tox 当前(虽然这计划在(撰写本文时)当前重写中进行改进)如果它不管理更改的文件(例如 requirements.txt / setup.py)
相关问题可以看我的question and workarounds
这里的核心问题是,如果您不在 tox.ini
中直接内联管理 tox 环境依赖项,它不会注意到更改(例如从 requirements.txt
添加/删除依赖项),因此您会需要 运行 使用 --recreate
标记来反映这些变化
免责声明:我是目前的 tox 维护者之一