mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-21 12:05:07 +01:00
Use Lcov
simplecov formatter on CI and HTML
elsewhere (#27859)
This commit is contained in:
parent
998f068499
commit
7c72944661
@ -2,9 +2,14 @@
|
|||||||
|
|
||||||
if ENV['DISABLE_SIMPLECOV'] != 'true'
|
if ENV['DISABLE_SIMPLECOV'] != 'true'
|
||||||
require 'simplecov'
|
require 'simplecov'
|
||||||
require 'simplecov-lcov'
|
|
||||||
SimpleCov::Formatter::LcovFormatter.config.report_with_single_file = true
|
if ENV['CI']
|
||||||
SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter
|
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
|
SimpleCov.start 'rails' do
|
||||||
enable_coverage :branch
|
enable_coverage :branch
|
||||||
enable_coverage_for_eval
|
enable_coverage_for_eval
|
||||||
|
Loading…
Reference in New Issue
Block a user