diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 9f9e584f..551dd29f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -50,23 +50,3 @@ def minitest(*args, openapi: false, output: :yaml) config.diff_elision_enabled = true config.diff_elision_maximum = 3 end - -# unless ENV['COVERAGE'] && ENV['COVERAGE'].empty? - require 'simplecov' - require 'simplecov-cobertura' - - SimpleCov.enable_for_subprocesses true - SimpleCov.at_fork do |pid| - # This needs a unique name so it won't be overwritten - SimpleCov.command_name "#{SimpleCov.command_name} (subprocess: #{pid})" - # be quiet, the parent process will be in charge of output and checking coverage totals - SimpleCov.print_error_status = false - SimpleCov.formatter SimpleCov::Formatter::MultiFormatter.new([ - SimpleCov::Formatter::CoberturaFormatter, - SimpleCov::Formatter::HTMLFormatter, - ]) - SimpleCov.minimum_coverage 0 - # start - SimpleCov.start - # end -end