.simplecov in newrelic_rpm-8.10.0 vs .simplecov in newrelic_rpm-8.10.1

- old
+ new

@@ -1,6 +1,13 @@ # frozen_string_literal: true +require 'securerandom' + +random = SecureRandom.uuid +SimpleCov.command_name(random) +SimpleCov.coverage_dir("coverage_#{random}") + SimpleCov.start do - enable_coverage :branch + enable_coverage(:branch) SimpleCov.root(File.join(File.dirname(__FILE__), '/lib')) - track_files "**/*.rb" + track_files("**/*.rb") + formatter(SimpleCov::Formatter::SimpleFormatter) end