File: .simplecov

package info (click to toggle)
asciidoctor 2.0.12-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,348 kB
  • sloc: ruby: 41,470; sh: 121; xml: 53; makefile: 25; ml: 1
file content (11 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (6)
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