codecov.yml 676 Bytes
Newer Older
dugupeiwen's avatar
dugupeiwen committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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:
        project:
            default:
                # The build fails if total project coverage drops by more than 3%
                target: auto
                threshold: "3%"
        # These checks can mark a build failed if too much new code
        # is not covered (which happens often with JITted functions).
        changes: false
        patch: false