mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
13 lines
357 B
Ruby
Executable File
13 lines
357 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require_relative '../config/bundler_setup'
|
|
require_relative '../spec/simplecov_env'
|
|
SimpleCovEnv.configure_profile
|
|
SimpleCovEnv.configure_formatter
|
|
|
|
resultset_files = Dir.glob(File.join(SimpleCov.coverage_path, '*', '.resultset.json'))
|
|
exit(0) if resultset_files.empty?
|
|
|
|
SimpleCov.collate(resultset_files)
|