gitlab-org--gitlab-foss/lib/tasks/test.rake
2016-07-21 12:46:49 +02:00

11 lines
262 B
Ruby

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, :teaspoon, :spinach, :spec]
end