-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Improve codecov coverage reporting (#4977)
* Amend `.codecov.yml` to disable coverage reporting of test sources and explicitly set most parameters * Increase codecov upload retry time to 210s (from 35s) * Upgrade gcovr adding support for more coverage formats (lcov, clover, jacoco) * Upgrade github actions in coverage workflow * Explicitly disable codecov plugins (also removing `gcov` coverage, which is not correctly handled by codecov codecov/feedback#334)
- Loading branch information
Showing
3 changed files
with
56 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,37 @@ | ||
codecov: | ||
require_ci_to_pass: true | ||
|
||
comment: | ||
behavior: default | ||
layout: reach,diff,flags,tree,reach | ||
show_carryforward_flags: false | ||
|
||
coverage: | ||
range: "60..80" | ||
precision: 1 | ||
round: nearest | ||
status: | ||
project: | ||
default: | ||
target: 60% | ||
threshold: 2% | ||
patch: | ||
default: | ||
target: auto | ||
threshold: 2% | ||
changes: false | ||
|
||
github_checks: | ||
annotations: true | ||
|
||
parsers: | ||
cobertura: | ||
partials_as_hits: true | ||
handle_missing_conditions : true | ||
|
||
slack_app: false | ||
|
||
ignore: | ||
- "src/test/" | ||
- "src/ripple/beast/test/" | ||
- "src/ripple/beast/unit_test/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters