Python: 关于nose
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python: 关于nose相关的知识,希望对你有一定的参考价值。
1. 使用rednose增强输出
pip install rednose
nosetests --rednose tests
2. 使用coverage
pip install coverage
nosetests --with-coverage --cover-html tests
随后可以在cover目录中查看生成的html报表
3. nose测试中默认捕获测试通过的case中的print输出,如果想要输出结果,可以加入以下参数
nosetests --nocapture mytest.py
以上是关于Python: 关于nose的主要内容,如果未能解决你的问题,请参考以下文章