diff options
| -rw-r--r-- | spec/spec_helper.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index dda1f7ed9..c99cede55 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,12 +1,12 @@ # This file is copied to spec/ when you run 'rails generate rspec:install' require 'simplecov' -# if ENV['JOB_NAME'] -# require 'simplecov-rcov' -# SimpleCov.formatters = [ -# SimpleCov::Formatter::HTMLFormatter, -# SimpleCov::Formatter::RcovFormatter -# ] -# end +if ENV['JOB_NAME'] + require 'simplecov-rcov' + SimpleCov.formatters = [ + SimpleCov::Formatter::HTMLFormatter, + SimpleCov::Formatter::RcovFormatter + ] +end SimpleCov.start 'rails' do add_filter 'vendor' end |
