diff --git a/Gemfile b/Gemfile index e35b804d..ebc115ac 100644 --- a/Gemfile +++ b/Gemfile @@ -19,7 +19,6 @@ group :development do gem "rubocop-rspec", '~> 2.19', :require => false gem 'simplecov', :require => false gem 'simplecov-console', :require => false - gem 'codecov', :require => false if ENV['PUPPET_GEM_VERSION'] gem 'puppet', ENV['PUPPET_GEM_VERSION'], :require => false diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 913772aa..125e1c44 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -7,12 +7,7 @@ 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' add_filter '/spec' @@ -24,6 +19,6 @@ add_filter '/.vendor' end rescue LoadError - raise 'Add the simplecov, simplecov-console, codecov gems to Gemfile to enable this task' + raise 'Add the simplecov & simplecov-console gems to Gemfile to enable this task' end end