2021-12-11 22:18:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
# rubocop:disable Rails/RakeEnvironment
|
|
|
|
|
|
|
|
require_relative "../qa/tools/reliable_report"
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
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)
|
2021-12-11 22:18:48 +05:30
|
|
|
end
|
|
|
|
# rubocop:enable Rails/RakeEnvironment
|