]> git.proxmox.com Git - mirror_zfs.git/blob - .github/codecov.yml
Moves Codecov Ignore to LCOV
[mirror_zfs.git] / .github / codecov.yml
1 codecov:
2 notify:
3 require_ci_to_pass: false # always post
4 after_n_builds: 2 # user and kernel
5
6 coverage:
7 precision: 0 # 0 decimals of precision
8 round: nearest # Round to nearest precision point
9 range: "50...90" # red -> yellow -> green
10
11 status:
12 project:
13 default:
14 threshold: 1% # allow 1% coverage variance
15
16 patch:
17 default:
18 threshold: 1% # allow 1% coverage variance
19
20 comment:
21 layout: "reach, diff, flags, footer"
22 behavior: once # update if exists; post new; skip if deleted
23 require_changes: yes # only post when coverage changes
24
25 # ignore: Please place any ignores in config/ax_code_coverage.m4 instead