debian-mirror-gitlab/lib/tasks/test.rake

18 lines
588 B
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
Rake::Task["test"].clear
2021-04-29 21:17:54 +05:30
desc "GitLab | List rake tasks for tests"
2014-09-02 18:07:02 +05:30
task :test do
2021-04-29 21:17:54 +05:30
puts "Running the full GitLab test suite takes significant time to pass. We recommend using one of the following spec tasks:\n\n"
spec_tasks = Rake::Task.tasks.select { |t| t.name.start_with?('spec:') }
longest_task_name = spec_tasks.map { |t| t.name.size }.max
spec_tasks.each do |task|
puts "#{"%-#{longest_task_name}s" % task.name} | #{task.full_comment}"
end
puts "\nLearn more at https://docs.gitlab.com/ee/development/rake_tasks.html#run-tests."
2014-09-02 18:07:02 +05:30
end