We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30cedba + 304ffff commit f01421eCopy full SHA for f01421e
Gemfile
@@ -12,7 +12,6 @@ group :test do
12
gem 'rubocop-rspec', '~> 2.19'
13
gem 'rubocop-performance', '~> 1.16'
14
15
- gem 'codecov'
16
gem 'simplecov'
17
gem 'simplecov-console'
18
end
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
19
20
SimpleCov.start do
21
track_files 'lib/**/*.rb'
@@ -27,7 +23,7 @@
27
23
add_filter '/.vendor'
28
24
29
25
rescue LoadError
30
- raise 'Add the simplecov, simplecov-console, and codecov gems to Gemfile to enable this task'
26
+ raise 'Add the simplecov & simplecov-console gems to Gemfile to enable this task'
31
32
33
0 commit comments