nosetests - 从报道报告中排除目录

时间:2014-11-21 01:35:08

标签: python nose coverage.py python-coverage

我的python应用程序结构如下:

proj
   - comp1
   - comp2
tests
   - comp1
   - comp2
other
   - contains some python code

我正在运行鼻子测试,如下所示:

nosetests --with-coverage  --cover-package=proj --exclude-dir=other -v tests

然而,在最后测试结果的覆盖率报告中,我仍然是来自“其他”的条目。如何排除'其他'从报道报告?

1 个答案:

答案 0 :(得分:0)

您的testsproj很可能指的是other python代码,因此,它会将其转换为报告。你可以看到调试覆盖率插件打印输出:

nosetests --with-coverage  --cover-package=proj -vv tests -l nose.plugins.cover