You must complete the next step to succeed:
jenkins_app/configure/
Then you need to go Post-build Actionsand then goPublish Rcov report
You will see a text field Rcov report directory, and then fill in the value of the text fieldcoverage/rcov
, gem:
gem 'simplecov', :require => false, :group => :test
gem 'simplecov-rcov'
spec/spec_helper.rb :
require 'simplecov'
require 'simplecov-rcov'
SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
SimpleCov.start 'rails'
, !