2016-06-30 10:08:01 -04:00
|
|
|
#!/usr/bin/env ruby
|
2021-02-12 07:09:02 -05:00
|
|
|
# frozen_string_literal: true
|
2016-06-30 10:08:01 -04:00
|
|
|
|
2016-07-21 04:44:18 -04:00
|
|
|
require_relative '../spec/simplecov_env'
|
|
|
|
SimpleCovEnv.configure_profile
|
2020-06-23 11:08:41 -04:00
|
|
|
SimpleCovEnv.configure_formatter
|
2016-06-30 10:08:01 -04:00
|
|
|
|
2022-03-23 02:07:44 -04:00
|
|
|
resultset_files = Dir.glob(File.join(SimpleCov.coverage_path, '*', '.resultset.json'))
|
|
|
|
exit(0) if resultset_files.empty?
|
|
|
|
|
|
|
|
SimpleCov.collate(resultset_files)
|