From ad9a3b4cbda12e306f800e8349e36a2987616059 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 1 Mar 2019 02:05:15 +0100 Subject: [PATCH] Drop coveralls gem and configuration --- .coveralls.yml | 1 - Gemfile | 1 - spec/spec_helper.rb | 6 +----- 3 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 .coveralls.yml diff --git a/.coveralls.yml b/.coveralls.yml deleted file mode 100644 index 91600595a..000000000 --- a/.coveralls.yml +++ /dev/null @@ -1 +0,0 @@ -service_name: travis-ci diff --git a/Gemfile b/Gemfile index 588e390f2..830b45d0a 100644 --- a/Gemfile +++ b/Gemfile @@ -20,7 +20,6 @@ end group :test do gem "codeclimate-test-reporter", "~> 1.0" - gem "coveralls", "~>0.8", require: false gem "json" gem "multi_json" gem "rspec", "< 4" diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 240928ed6..8e4c8330a 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -18,7 +18,6 @@ # limitations under the License. # require "simplecov" -require "coveralls" require "vcr" require "webmock/rspec" @@ -26,10 +25,7 @@ module SpecHelper end -SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ - Coveralls::SimpleCov::Formatter, - SimpleCov::Formatter::HTMLFormatter - ]) +SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter SimpleCov.start do add_filter "gemfiles/" end