我的python应用程序结构如下:
proj
- comp1
- comp2
tests
- comp1
- comp2
other
- contains some python code
我正在运行鼻子测试,如下所示:
nosetests --with-coverage --cover-package=proj --exclude-dir=other -v tests
然而,在最后测试结果的覆盖率报告中,我仍然是来自“其他”的条目。如何排除'其他'从报道报告?
答案 0 :(得分:0)
您的tests
或proj
很可能指的是other
python代码,因此,它会将其转换为报告。你可以看到调试覆盖率插件打印输出:
nosetests --with-coverage --cover-package=proj -vv tests -l nose.plugins.cover