Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reliable_report.rake « tasks « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4dcc2ebc0186488de4a83c28567a66ca75b5795 (plain)
1
2
3
4
5
6
7
8
# 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