Skip to content

Commit a8bfb24

Browse files
Merge pull request #9 from sensortower/kk-remove-codecov
Remove codecov references
2 parents 348817b + fea2048 commit a8bfb24

File tree

4 files changed

+2
-12
lines changed

4 files changed

+2
-12
lines changed

.github/workflows/rspec.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,3 @@ jobs:
5454
- run: docker-compose up -d
5555
- name: Run specs and generate coverage report
5656
run: bundle exec rake spec
57-
- name: Upload coverage to Codecov
58-
uses: codecov/codecov-action@v3

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ group :development do
1919
end
2020

2121
group :test do
22-
gem "codecov", :require => false
23-
gem "simplecov", :require => false
22+
gem "simplecov", :require => false
2423
end
2524

2625
gemspec

gemfiles/redis_4.8.0_sidekiq_6.5.0.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ group :development do
2222
end
2323

2424
group :test do
25-
gem "codecov", require: false
2625
gem "simplecov", require: false
2726
end
2827

spec/support/simplecov.rb

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22

33
require "simplecov"
44

5-
SimpleCov.formatter =
6-
if ENV["CI"]
7-
require "codecov"
8-
SimpleCov::Formatter::Codecov
9-
else
10-
SimpleCov::Formatter::HTMLFormatter
11-
end
5+
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
126

137
SimpleCov.start do
148
add_filter "/spec/"

0 commit comments

Comments
 (0)