gitlab-org--gitlab-foss/lib/tasks/test.rake

12 lines
263 B
Ruby
Raw Normal View History

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"
2016-06-29 16:42:24 +00:00
task test_ci: [:rubocop, :brakeman, 'teaspoon', :spinach, :spec]
end