.simplecov
# frozen_string_literal: true
# To get coverage
# On Local, default (HTML) output, it just works, coverage is turned on:
# bundle exec rspec spec
# On Local, all output formats:
# COVER_ALL=true bundle exec rspec spec
#
# On CI, all output formats, the ENV variables CI is always set,
# and COVER_ALL, and CI_CODECOV, are set in the coverage.yml workflow only,
# so coverage only runs in that workflow, and outputs all formats.
#
if RUN_COVERAGE
SimpleCov.start do
enable_coverage :branch
primary_coverage :branch
add_filter "spec"
add_filter "lib/service_actor/promptable/version.rb"
track_files "**/*.rb"
if ALL_FORMATTERS
command_name "#{ENV.fetch("GITHUB_WORKFLOW", nil)} Job #{ENV.fetch("GITHUB_RUN_ID", nil)}:#{ENV.fetch("GITHUB_RUN_NUMBER", nil)}"
else
formatter SimpleCov::Formatter::HTMLFormatter
end
minimum_coverage(93, 75)
end
else
puts "Not running coverage on #{RUBY_ENGINE} #{RUBY_VERSION}"
end