Rcov 显示不考虑代码覆盖率为 0% 的文件
我目前正在 Rails 项目(ruby 1.8.7)中运行 rcov。我让 Jenkins 负责代码覆盖率的概述。
遗憾的是,仅显示代码覆盖率大于 0.0% 的文件。
这会导致错误的总覆盖范围。
有没有办法包含测试运行中未触及的所有文件?
I'm currently running rcov in a Rails Project (ruby 1.8.7). I let Jenkins take care of the overview of the code coverage.
Unfortunately only files that have a code coverage greater than 0.0% are shown.
This leads to a wrong total coverage.
Is there a way to include all files that have not been touched in the test run?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将阈值设置为 101,这样它将包含 100% 的文件。
这取决于您的安装,您应该把它放在哪里。例如,以下是 RSpec 1.x 的文档。
You'll need to set the threshold to 101, so it'll include the files with 100%.
It depends on your installation where you should put this. Here is the documentation for RSpec 1.x for example.