summaryrefslogtreecommitdiff
path: root/.codecov.yml
blob: 0c2c6af52f1c102780276a46ba95daf3c700c1be (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
26
27
28
29
30
31
32
---

codecov:
  bot: codecov
  notify:
    require_ci_to_pass: yes

coverage:
  precision: 2
  round: down
  range: "70...100"

  status:
    # Only consider coverage of the code snippet changed in PR
    project: no
    patch: yes
    changes: no

parsers:
  gcov:
    branch_detection:
      conditional: yes
      loop: yes
      method: no
      macro: no

comment:
  layout: "header, diff"
  behavior: default
  require_changes: no

...