8 lines
301 B
Ruby
8 lines
301 B
Ruby
# frozen_string_literal: true
|
|
# rubocop:disable Rails/RakeEnvironment
|
|
|
|
desc "Fetch reliable and unreliable spec data and create report"
|
|
task :reliable_spec_report, [:range, :report_in_issue_and_slack] do |_task, args|
|
|
QA::Tools::ReliableReport.run(**args)
|
|
end
|
|
# rubocop:enable Rails/RakeEnvironment
|