如何排除 rcov 和 cucumber 中的文件?

发布于 2024-10-26 20:02:59 字数 210 浏览 3 评论 0原文

我想排除如下图所示的文件,这样就不需要包含来测试,那么如何解决这个问题呢?

图片 https://i.sstatic.net/n9Lwk.png

I want to exclude files like on this picture below, so it not necessary include to test, so how to solve this problem?

image
https://i.sstatic.net/n9Lwk.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灯下孤影 2024-11-02 20:02:59

从这张图片中,我了解到您只是想将它们排除在覆盖率分析之外?

如果是这样,类似这样的事情可能会有所帮助:

http://psixty.wordpress.com/2010/06/22/how-to-exclude-files-in-rcova-code-coverage-tool-in-ruby/

From that picture, I'm understanding you just want to exclude them from the coverage analysis?

If so, something like this might help:

http://psixty.wordpress.com/2010/06/22/how-to-exclude-files-in-rcova-code-coverage-tool-in-ruby/

夏日落 2024-11-02 20:02:59

找到您的黄瓜任务文件(cucumber.rake),并在 rcov_opts 上写入您要排除的文件。例如:

Cucumber::Rake::Task.new({:ok => ['coverage_setup', 'db:test:prepare']}, 'Run features that should pass') do |t|
 t.binary = vendored_cucumber_bin 
 t.fork = true  
 t.profile = 'default'
 t.rcov = true
 t.rcov_opts = %w{--rails --aggregate coverage.data --exclude osx\/objc,gems\/,spec\/,\.bundler\/,features\/}
end

Find your cucumber task file (cucumber.rake), and write on the rcov_opts what the files that you want to exclude. For example:

Cucumber::Rake::Task.new({:ok => ['coverage_setup', 'db:test:prepare']}, 'Run features that should pass') do |t|
 t.binary = vendored_cucumber_bin 
 t.fork = true  
 t.profile = 'default'
 t.rcov = true
 t.rcov_opts = %w{--rails --aggregate coverage.data --exclude osx\/objc,gems\/,spec\/,\.bundler\/,features\/}
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文