mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
14 lines
371 B
Ruby
Executable File
14 lines
371 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require_relative '../config/bundler_setup'
|
|
require_relative '../spec/simplecov_env_core'
|
|
|
|
SimpleCovEnvCore.configure_profile
|
|
SimpleCovEnvCore.configure_formatter
|
|
|
|
resultset_files = Dir.glob(File.join(SimpleCov.coverage_path, '*', '.resultset.json'))
|
|
exit(0) if resultset_files.empty?
|
|
|
|
SimpleCov.collate(resultset_files)
|