Use `Lcov` simplecov formatter on CI and `HTML` elsewhere (#27859)

th-downstream
Matt Jankowski 10 months ago committed by GitHub
parent 998f068499
commit 7c72944661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,9 +2,14 @@
if ENV['DISABLE_SIMPLECOV'] != 'true'
require 'simplecov'
if ENV['CI']
require 'simplecov-lcov'
SimpleCov::Formatter::LcovFormatter.config.report_with_single_file = true
SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter
else
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
end
SimpleCov.start 'rails' do
enable_coverage :branch
enable_coverage_for_eval

Loading…
Cancel
Save