File: .codecov.yml

package info (click to toggle)
seqan-raptor 3.0.1%2Bds-9
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 23,508 kB
  • sloc: cpp: 87,749; ansic: 56,941; sh: 2,049; makefile: 690; python: 477; xml: 470; javascript: 97; php: 11; ruby: 7
file content (16 lines) | stat: -rw-r--r-- 799 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# See https://docs.codecov.io/docs/codecovyml-reference
codecov:
  require_ci_to_pass: no  # codecov reports its results independent of whether CI passed
  notify:
    wait_for_ci: no       # codecov has not to wait until the CI is finished to post its results

coverage:
  status:
    project:  # project is the overall code coverage of the whole codebase
      default:
        if_ci_failed: success # per default, codecov would fail if any CI fails
        informational: true   # the codecov/patch status is never "fail"
    patch:  # patch is the code-coverage of the changed lines in the PR and often reports false positives
      default:
        if_ci_failed: success # per default, codecov would fail if any CI fails
        informational: true   # the codecov/patch status is never "fail"