Skip to content

Commit b5e905c

Browse files
committed
[CI] Removed Coveralls support from gemfiles, Rakefiles
(Never worked for the multi-gem repo anyway)
1 parent d829fee commit b5e905c

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ gem "simplecov"
2121
gem "simplecov-rcov"
2222
gem "cane"
2323
gem "require-prof"
24-
gem "coveralls"

Rakefile

-9
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ namespace :test do
5959
sh "cd #{__current__.join(project)} && unset BUNDLE_GEMFILE && bundle exec rake test:unit"
6060
puts "\n"
6161
end
62-
Rake::Task['test:coveralls'].invoke if ENV['CI'] && defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
6362
end
6463

6564
desc "Run integration tests in all subprojects"
@@ -80,8 +79,6 @@ namespace :test do
8079
sh "cd #{__current__.join('elasticsearch-rails')} && unset BUNDLE_GEMFILE &&" +
8180
" bundle exec rake test:integration"
8281
puts "\n"
83-
84-
Rake::Task['test:coveralls'].invoke if ENV['CI'] && defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
8582
end
8683

8784
desc "Run all tests in all subprojects"
@@ -92,12 +89,6 @@ namespace :test do
9289
Rake::Task['test:integration'].invoke
9390
end
9491

95-
task :coveralls do
96-
require 'coveralls/rake/task'
97-
Coveralls::RakeTask.new
98-
Rake::Task['coveralls:push'].invoke
99-
end
100-
10192
task :ci_reporter do
10293
ENV['CI_REPORTS'] ||= 'tmp/reports'
10394
if defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'

elasticsearch-model/elasticsearch-model.gemspec

-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,5 @@ Gem::Specification.new do |s|
5454
s.add_development_dependency "simplecov"
5555
s.add_development_dependency "cane"
5656
s.add_development_dependency "require-prof"
57-
s.add_development_dependency "coveralls"
5857
end
5958
end

0 commit comments

Comments
 (0)