Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit d4071a2

Browse files
authored
Merge pull request #405 from codecov/use-codecov-formatter
Use codecov formatter
2 parents 5de0eef + 23fcb3b commit d4071a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
command: |
1616
gem install json
1717
gem install simplecov
18-
gem install simplecov-cobertura
18+
gem install codecov
1919
gem install bashcov
2020
- shellcheck/install
2121
- run:
@@ -30,7 +30,7 @@ jobs:
3030
- run:
3131
name: Upload Codecov
3232
command: |
33-
bash ./codecov -s coverage -Z
33+
bash ./codecov -z coverage/codecov-result.json -Z
3434
- store_artifacts:
3535
path: coverage
3636
deploy:

.simplecov

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1+
require 'codecov'
12
require 'simplecov'
2-
require 'simplecov-cobertura'
33

4-
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
4+
SimpleCov.formatter = Codecov::SimpleCov::Formatter

0 commit comments

Comments
 (0)