gitlab-org--gitlab-foss/lib/tasks/test.rake
Dmitriy Zaporozhets 522d754dfe
Try wear_merged! without argument
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-01 11:43:16 +03:00

13 lines
309 B
Ruby

Rake::Task["test"].clear
desc "GITLAB | Run all tests"
task :test do
Rake::Task["gitlab:test"].invoke
end
unless Rails.env.production?
require 'coveralls/rake/task'
Coveralls::RakeTask.new
desc "GITLAB | Run all tests on CI with simplecov"
task :test_ci => [:spinach, :spec, 'coveralls:push']
end