blob: 591491109e6f28cb7bdf7536593bbfc451782944 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
SimpleCov.start do
load_profile 'test_frameworks'
coverage_dir ENV['COVERAGE_REPORTS'] || 'tmp/coverage'
if ENV['SHIPPABLE']
require 'simplecov-csv'
formatter SimpleCov::Formatter::CSVFormatter
else
#formatter SimpleCov::Formatter::MultiFormatter[SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::CSVFormatter]
formatter SimpleCov::Formatter::HTMLFormatter
end
end
|