From 7af72863fd0c995ea15f903273f93072bcfebc09 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Tue, 3 Dec 2019 19:23:48 +0100 Subject: Codecov tweaks 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 Signed-off-by: Kjeld Schouten-Lebbing Closes #9650 --- .github/codecov.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/codecov.yml b/.github/codecov.yml index 9ae962639..e4155dd85 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -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: @@ -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 \ No newline at end of file -- cgit v1.2.3