mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
A variable and a method were called the same. Also made method calls more obvious with parenthesis.
18 lines
624 B
Ruby
18 lines
624 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :simplecov do
|
|
desc "Collates all result sets produced during parallel test runs"
|
|
task :collate_results, # rubocop:disable Rails/RakeEnvironment doesn't need the full env
|
|
[:path_to_results, :coverage_dir] do |_t, args|
|
|
require "simplecov"
|
|
|
|
path_to_results = args[:path_to_results].presence || "tmp/simplecov"
|
|
output_path = args[:coverage_dir].presence || "coverage"
|
|
|
|
SimpleCov.collate Dir[File.join(path_to_results, "**", ".resultset.json")], "rails" do
|
|
formatter(SimpleCov::Formatter::HTMLFormatter)
|
|
coverage_dir(output_path)
|
|
end
|
|
end
|
|
end
|