File: codecov.yml

package info (click to toggle)
exhale 0.3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,816 kB
  • sloc: python: 9,048; cpp: 1,260; javascript: 915; f90: 29; ansic: 18; makefile: 16
file content (28 lines) | stat: -rw-r--r-- 840 bytes parent folder | download | duplicates (3)
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
# .github/workflows/*.yaml conditionally enable / disable tests.
# https://docs.codecov.com/docs/commit-status#excluding-tests-example
coverage:
  status:
    project:
      default: false
      tests:
        # At this time we don't care about coverage changes as far as status
        # blockers go.  Code coverage is nice, but not a requirement, reviewers
        # should use their best judgement...
        target: auto
        threshold: 99%
        paths:
          - "exhale/"
          - "testing/*.py"
          - "testing/tests/*.py"
          - "!testing/projects/"
      projects:
        target: auto
        threshold: 99%
        paths:
          - "!exhale/"
          - "!testing/*.py"
          - "!testing/tests/*.py"
          - "testing/projects/"

# https://docs.codecov.com/docs/pull-request-comments
comment: false