Python代码覆盖率统计工具coverage.py用法详解
pip install coverage安装完成后,会在Python环境下的\Scripts下看到coverage.exe;coverage run运行一个.py的文件方式:python test.py现在使用coverage执行.py的文件方式:coverage run test.py会自动生成一个覆盖率统计结果文件:.coverage,这个文件在你的test.py的文件对应目录下。coverage report有了覆盖率统计结果文件,只需要再运行report参数,就可以在命令里看到统计的结果。coverage html -d covhtml生成html的测试报告。除了使用命令行,还可以在python代码中直接调用coverage模块执行代码覆盖率的统计。使用方法也非常简单:文档:
用户评论