Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pdksync - (CAT-1618) - Remove deprecated/obsolete codecov gem #543

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 1 addition & 5 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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

Expand Down
Loading