Python 项目缺少 "Code Coverage" 选项卡
Missing "Code Coverage" tab on Python project
我在 GitHub, which I test using Azure Pipelines (here is a link to the configuration 上托管了一个 Python 项目。
我正在 运行 使用 pytest
进行单元测试并获得覆盖率结果,我将其上传到我的管道中。我在管道执行摘要 (example) 中获得了总体代码覆盖百分比,但我没有看到 "Code Coverage" 选项卡,其中包含覆盖了哪些行的详细信息。构建工件包含 HTML 代码覆盖率报告,其中包含此信息,但最好在管道 运行 页面本身中看到它。
这里是pytest的调用:
pytest tests --doctest-modules --junitxml=junit/test-results.xml
--cov=callgraph --cov-report=xml --cov-report=html
我错过了什么?
不幸的是,那不是那样的。至少 6 个月前是这样。
https://github.com/Microsoft/azure-pipelines-tasks/issues/7703
我在 GitHub, which I test using Azure Pipelines (here is a link to the configuration 上托管了一个 Python 项目。
我正在 运行 使用 pytest
进行单元测试并获得覆盖率结果,我将其上传到我的管道中。我在管道执行摘要 (example) 中获得了总体代码覆盖百分比,但我没有看到 "Code Coverage" 选项卡,其中包含覆盖了哪些行的详细信息。构建工件包含 HTML 代码覆盖率报告,其中包含此信息,但最好在管道 运行 页面本身中看到它。
这里是pytest的调用:
pytest tests --doctest-modules --junitxml=junit/test-results.xml
--cov=callgraph --cov-report=xml --cov-report=html
我错过了什么?
不幸的是,那不是那样的。至少 6 个月前是这样。
https://github.com/Microsoft/azure-pipelines-tasks/issues/7703