使用py.test和coverage.py覆盖Cython模块

时间:2018-01-29 16:08:54

标签: python code-coverage cython coverage.py

我希望使用Python编写的一些(单元)测试来获取Cython模块的覆盖信息。我现在所拥有的是测试本身的覆盖范围,即通过运行py.test执行哪些测试行。虽然很好看,但我更愿意覆盖.pyx文件,即我的测试涵盖了C / Python接口的哪些行。

我已经找到了一些信息,但无法让它为我的项目运行:

http://blog.behnel.de/posts/coverage-analysis-for-cython-modules.html

https://medium.com/@dfdeshom/better-test-coverage-workflow-for-cython-modules-631615eb197a

How to use coverage analysis with Cython

这是有问题的代码:https://github.com/SCIP-Interfaces/PySCIPOpt/tree/coverage

1 个答案:

答案 0 :(得分:7)

目前的答案有两个部分:

  • pytest配置
  • coverage.py配置

让我们从pytest配置开始。目前在coverage分支上有.travis.yml文件,其中包含以下行:py.test --cov tests,这告诉pytest-cov显示tests目录的覆盖范围。不想要。 您可以改为运行py.test tests --cov或更改setup.cfg,而不是通过tests

然后,您将拥有setup.cfg文件:

[tool:pytest]
testpaths = 
    tests

在您需要的.coverage文件中:

[run]
plugins = Cython.Coverage
source = src/pyscipopt
omit =
    tests
    *__init__.py

单独指定paths已过时,我已将其删除。这种方式coverage.py知道它应该只检查src/pyscipopt目录的覆盖范围。

在这些更改后,我得到的输出是:

---------- coverage: platform darwin, python 3.6.4-final-0 -----------
Name                          Stmts   Miss Branch BrPart  Cover
---------------------------------------------------------------
src/pyscipopt/Multidict.py       17     17     10      0     0%
src/pyscipopt/conshdlr.pxi      301    129      0      0    57%
src/pyscipopt/expr.pxi          168     57      0      0    66%
src/pyscipopt/heuristic.pxi      44     18      0      0    59%
src/pyscipopt/lp.pxi            235    177      0      0    25%
src/pyscipopt/pricer.pxi         52     24      0      0    54%
---------------------------------------------------------------
TOTAL                           817    422     10      0    48%

这看起来像你想要的正确输出,但我确实看到scip.pyx文件丢失了。您还可以查看related issue on github。我没有进一步调查,因为它回答了你的问题,我认为你可以从这里找到任何遗失的东西。