gpt4 book ai didi

python - 从 pip 移动到诗歌,现在 pytest-cov 不会收集覆盖数据

转载 作者:行者123 更新时间:2023-12-04 16:45:21 24 4
gpt4 key购买 nike

我最近开始使用 poetry管理项目依赖项,
而不是使用 requirements.txttest-requirements.txtpip .
进行更改后,我无法进行覆盖测试
正确。在这两种情况下,我都使用 tox插入测试(我
tox-poetry已安装扩展)。
我的 tox.ini目前看起来像这样:

[tox]
isolated_build = True
envlist = pep8,unit

[testenv]
whitelist_externals = poetry

[testenv:venv]
commands = {posargs}

[testenv:pep8]
commands =
poetry run flake8 {posargs:symtool}

[testenv:unit]
commands =
poetry run pytest --cov=symtool {posargs} tests/unit
以前,它看起来像这样:
[tox]
envlist = pep8,unit

[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt

[testenv:venv]
commands = {posargs}

[testenv:pep8]
commands =
flake8 {posargs:symtool}

[testenv:unit]
commands =
pytest --cov=symtool {posargs} tests/unit
自从更改为 poetry ,当我运行例如 tox -e unit , 我懂了:
unit run-test: commands[0] | poetry run pytest --cov=symtool tests/unit
===================================== test session starts =====================================
platform linux -- Python 3.9.1, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
cachedir: .tox/unit/.pytest_cache
rootdir: /home/lars/projects/symtool, configfile: tox.ini
plugins: cov-2.11.1
collected 14 items

tests/unit/test_disasm.py ..... [ 35%]
tests/unit/test_symtool.py ......... [100%]r
Coverage.py warning: No data was collected. (no-data-collected)
我想弄清楚 no-data-collected问题。根据 pytest --help , --cov参数设置路径 包裹
姓名:
 --cov=[SOURCE]        Path or package name to measure during execution
存储库的根目录(在上面的输出中是 rootdir来自 tox ) 看起来像这样:
asm
pyproject.toml
README.md
reference
symtool
tests
tox.ini
肯定有 symtool包含包的目录。
即使测试以某种方式不在项目根目录中运行
目录, symtool包安装在测试环境中,
单元测试实际上正在通过这一事实证明了这一点(所有
其中包括 import symtool 的一些变体)。
我如何获得保险才能再次工作?

最佳答案

把我的评论变成答案:
这是 pytest-cov 的老问题和 tox (首次报道于 issue #38 )。 tox将您的项目安装为第三方包和 pytest将从站点导入它(例如从 .tox/unit/lib/python3.X/site-packages 如果作业名为 unit ),而 --cov=symtool指示pytest-cov收集覆盖symtool项目根目录中的目录。
一种解决方案是切换到 src布局:

├── pyproject.toml
├── README.md
├── reference
├── src
| └── symtool
├── tests
└── tox.ini
在您的 pyproject.toml ,您需要指向 poetry源目录:
[tool.poetry]
...
packages = [
{ include = "symtool", from = "src" },
]
现在 src将阻止从源代码树导入代码,所以 --cov=symtool将收集已安装模块的覆盖范围,这是唯一的选择。对于开发过程的其余部分,您不应该像 poetry install 那样遇到麻烦。以可编辑模式安装项目,因此其余部分应该可以正常工作。
另一种选择是使用 tox 跳过软件包安装并以可编辑模式安装。放置在 tox.ini 中的示例片段:
[testenv]
whitelist_externals =
poetry
skip_install = true
commands_pre =
poetry install
commands =
poetry run pytest ...
尽管如此,这几乎会扼杀对已安装模块的测试(您不再明确测试您的项目是否可以安装在空白的 venv 中,而是使用源代码树中的内容),所以我会选择 src布局选项。

关于python - 从 pip 移动到诗歌,现在 pytest-cov 不会收集覆盖数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66090538/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com