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

test.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e01f91d32c5fa6041a294adc6298b403dd506ee (plain)
1
2
3
4
5
6
7
8
9
10
11
Rake::Task["test"].clear

desc "GitLab | Run all tests"
task :test do
  Rake::Task["gitlab:test"].invoke
end

unless Rails.env.production?
  desc "GitLab | Run all tests on CI with simplecov"
  task test_ci: [:rubocop, :brakeman, :karma, :spinach, :spec]
end