Skip to content

Commit

Permalink
Codecov tweaks
Browse files Browse the repository at this point in the history
Modify the Codecov settings to provide a more realistic and stable
report.  The following change were made:

- Precision has been limited to whole percents only, but will round
  to nearest. This means 0.0-0.49 will round to zero (no change) and
  0.51 will round to 1%.

- Exclude the tests/zfs-tests directory from the report.

Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Kjeld Schouten-Lebbing <[email protected]>
Closes #9650
  • Loading branch information
Kjeld Schouten authored and behlendorf committed Dec 3, 2019
1 parent 5ff2249 commit 7af7286
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ codecov:
after_n_builds: 2 # user and kernel

coverage:
precision: 2 # 2 digits of precision
precision: 0 # 0 decimals of precision
round: nearest # Round to nearest precision point
range: "50...90" # red -> yellow -> green

status:
Expand All @@ -20,3 +21,6 @@ comment:
layout: "reach, diff, flags, footer"
behavior: once # update if exists; post new; skip if deleted
require_changes: yes # only post when coverage changes

ignore:
- "tests/zfs-tests" # Don't need Tests to cover themselves

0 comments on commit 7af7286

Please sign in to comment.