summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-06-30 12:54:22 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-06-30 12:54:22 +0000
commit8b675291821455d755fdeef7b2bdd0c99ce0f32f (patch)
tree560d37aab62ef1e1eeb97da7e3b1ffe9e2d5c376 /lib/tasks
parent1a68a0a6f55049b4ad42222b0dc667fe625a7604 (diff)
parent7a2f25a80dccd689fdba39223fe18c746306b1de (diff)
downloadgitlab-ce-8b675291821455d755fdeef7b2bdd0c99ce0f32f.tar.gz
Merge branch 'remove-converalls-gem' into 'master'
Remove coveralls as its unused This gem is unused so could be removed. @dzaporozhets @connorshea We've discussed this some time ago on Slack See merge request !5001
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/test.rake4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake
index c5666d49e61..21c0e5f1d41 100644
--- a/lib/tasks/test.rake
+++ b/lib/tasks/test.rake
@@ -6,8 +6,6 @@ task :test do
end
unless Rails.env.production?
- require 'coveralls/rake/task'
- Coveralls::RakeTask.new
desc "GitLab | Run all tests on CI with simplecov"
- task :test_ci => [:rubocop, :brakeman, 'teaspoon', :spinach, :spec, 'coveralls:push']
+ task test_ci: [:rubocop, :brakeman, 'teaspoon', :spinach, :spec]
end