diff options
author | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-06-29 18:42:24 +0200 |
---|---|---|
committer | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-06-30 10:59:41 +0200 |
commit | 7a2f25a80dccd689fdba39223fe18c746306b1de (patch) | |
tree | 5245bce4e12c72db9a78b941d22ce6a11883f741 /lib/tasks/test.rake | |
parent | bef4294c58e0bbadc01f633fc8bea514801de7ae (diff) | |
download | gitlab-ce-7a2f25a80dccd689fdba39223fe18c746306b1de.tar.gz |
Remove coveralls as its unusedremove-converalls-gem
Diffstat (limited to 'lib/tasks/test.rake')
-rw-r--r-- | lib/tasks/test.rake | 4 |
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 |