File: codecov.yml

package info (click to toggle)
llvmlite 0.44.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,736 kB
  • sloc: python: 12,771; cpp: 3,146; sh: 185; makefile: 183
file content (21 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Configuration for codecov.io
# When editing this file, please validate its contents using:
#   curl -X POST --data-binary @- https://codecov.io/validate < codecov.yml

comment:
    layout: "header, diff, changes, uncovered"

coverage:
    ignore:
        - "numba/cuda/.*"
        - "numba/hsa/.*"

    status:
        # This check can mark a build failed if too much new code
        # is not covered (which happens often with JITted functions).
        patch: false
        project:
            default:
                # The build fails if total project coverage drops by more than 3%
                target: auto
                threshold: "3%"