summaryrefslogtreecommitdiffstats
path: root/.github/codecov.yml
blob: 6d4932680e5ccee6a4d6e7ce6f5000f95cf424cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
codecov:
  notify:
    require_ci_to_pass: false	# always post
    after_n_builds: 2		# user and kernel

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

  status:
    project:
      default:
        threshold: 1%		# allow 1% coverage variance

    patch:
      default:
        threshold: 1%		# allow 1% coverage variance

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: Please place any ignores in config/ax_code_coverage.m4 instead