Merge pull request #8369 from Homebrew/dependabot/bundler/Library/Homebrew/simplecov-0.19.0
build(deps): bump simplecov from 0.18.5 to 0.19.0 in /Library/Homebrew
This commit is contained in:
commit
16eae0feda
@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
require "English"
|
require "English"
|
||||||
|
|
||||||
|
SimpleCov.enable_for_subprocesses true
|
||||||
|
|
||||||
SimpleCov.start do
|
SimpleCov.start do
|
||||||
coverage_dir File.expand_path("../test/coverage", File.realpath(__FILE__))
|
coverage_dir File.expand_path("../test/coverage", File.realpath(__FILE__))
|
||||||
root File.expand_path("..", File.realpath(__FILE__))
|
root File.expand_path("..", File.realpath(__FILE__))
|
||||||
@ -12,9 +14,21 @@ SimpleCov.start do
|
|||||||
# tests to be dropped. This causes random fluctuations in test coverage.
|
# tests to be dropped. This causes random fluctuations in test coverage.
|
||||||
merge_timeout 86400
|
merge_timeout 86400
|
||||||
|
|
||||||
|
at_fork do |pid|
|
||||||
|
# This needs a unique name so it won't be ovewritten
|
||||||
|
command_name "#{SimpleCov.command_name} (#{pid})"
|
||||||
|
|
||||||
|
# be quiet, the parent process will be in charge of output and checking coverage totals
|
||||||
|
print_error_status = false
|
||||||
|
end
|
||||||
|
|
||||||
if ENV["HOMEBREW_INTEGRATION_TEST"]
|
if ENV["HOMEBREW_INTEGRATION_TEST"]
|
||||||
|
# This needs a unique name so it won't be ovewritten
|
||||||
command_name "#{ENV["HOMEBREW_INTEGRATION_TEST"]} (#{$PROCESS_ID})"
|
command_name "#{ENV["HOMEBREW_INTEGRATION_TEST"]} (#{$PROCESS_ID})"
|
||||||
|
|
||||||
|
# be quiet, the parent process will be in charge of output and checking coverage totals
|
||||||
|
print_error_status = false
|
||||||
|
|
||||||
at_exit do
|
at_exit do
|
||||||
exit_code = $ERROR_INFO.nil? ? 0 : $ERROR_INFO.status
|
exit_code = $ERROR_INFO.nil? ? 0 : $ERROR_INFO.status
|
||||||
$stdout.reopen("/dev/null")
|
$stdout.reopen("/dev/null")
|
||||||
|
@ -116,7 +116,7 @@ GEM
|
|||||||
rubocop (>= 0.87.0)
|
rubocop (>= 0.87.0)
|
||||||
ruby-macho (2.2.0)
|
ruby-macho (2.2.0)
|
||||||
ruby-progressbar (1.10.1)
|
ruby-progressbar (1.10.1)
|
||||||
simplecov (0.18.5)
|
simplecov (0.19.0)
|
||||||
docile (~> 1.1)
|
docile (~> 1.1)
|
||||||
simplecov-html (~> 0.11)
|
simplecov-html (~> 0.11)
|
||||||
simplecov-html (0.12.2)
|
simplecov-html (0.12.2)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user