diff --git a/Gemfile b/Gemfile index 6c5bb1d..bd40968 100644 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,6 @@ group :test do gem 'rubocop-rspec', '~> 2.19' gem 'rubocop-performance', '~> 1.16' - gem 'codecov' gem 'simplecov' gem 'simplecov-console' end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index c3132a6..cb6793b 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -12,10 +12,6 @@ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::Console ] - if ENV['CI'] == 'true' - require 'codecov' - SimpleCov.formatters << SimpleCov::Formatter::Codecov - end SimpleCov.start do track_files 'lib/**/*.rb' @@ -27,7 +23,7 @@ add_filter '/.vendor' end rescue LoadError - raise 'Add the simplecov, simplecov-console, and codecov gems to Gemfile to enable this task' + raise 'Add the simplecov & simplecov-console gems to Gemfile to enable this task' end end