module SimpleCov

def collate(result_filenames, profile = nil, ignore_timeout: true, &block)


`ignore_timeout: false`.
merged together. If you want to honor the merge_timeout then provide the keyword argument
By default `collate` ignores the merge_timeout so all results of all files specified will be

information about coverage collation
available config options, or checkout the README for more in-depth
Please check out the RDoc for SimpleCov::Configuration to find about

end
add_filter 'test'
SimpleCov.collate Dir["simplecov-resultset-*/.resultset.json"], 'rails' do
OR
end
add_filter 'test'
SimpleCov.collate Dir["simplecov-resultset-*/.resultset.json"] do
OR
SimpleCov.collate Dir["simplecov-resultset-*/.resultset.json"], 'rails' # using rails profile
OR
SimpleCov.collate Dir["simplecov-resultset-*/.resultset.json"]
You can optionally specify configuration with a block:

Collate a series of SimpleCov result files into a single SimpleCov output.
def collate(result_filenames, profile = nil, ignore_timeout: true, &block)
  raise "There are no reports to be merged" if result_filenames.empty?
  initial_setup(profile, &block)
  # Use the ResultMerger to produce a single, merged result, ready to use.
  @result = ResultMerger.merge_and_store(*result_filenames, ignore_timeout: ignore_timeout)
  run_exit_tasks!
end