如何从命令行查看 rcov 的统计信息?
我正在运行内置的 rake 任务来生成 rcov 报告:
rake spec:rcov
这会在我的覆盖目录中生成文件,但我希望看到一些汇总统计信息输出到命令控制台。
像总覆盖率和正在测试的行数之类的格式与运行“rake stats”时得到的格式类似
有人知道有什么方法可以做到这一点吗?
I'm running the built-in rake task to generate rcov reports:
rake spec:rcov
This generate files in my coverage directory, but I would like to see some aggregate stats output to the command console.
Something like the total coverage and number of lines being tested in a format similar to what you get when you run "rake stats"
Anyone know of a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将 --text-summary 选项添加到我的 rcov.opts 中,它输出我需要的数据。
I added the --text-summary option to my rcov.opts and it outputs the data I need.