Sha256: 74e5320c45ccf5f600e2f2852d93abcbd84eed25866a69897c25c7cd0c579fc2
Contents?: true
Size: 380 Bytes
Versions: 16
Compression:
Stored size: 380 Bytes
Contents
# frozen_string_literal: true require "simplecov" if ENV["CI"] require "simplecov-lcov" SimpleCov::Formatter::LcovFormatter.config do |config| config.report_with_single_file = true config.lcov_file_name = "lcov.info" end SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter end SimpleCov.start do add_filter "/spec/" minimum_coverage 80 end
Version data entries
16 entries across 16 versions & 4 rubygems