.codecov.yml 534 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
codecov:
  require_ci_to_pass: yes

flag_management:
  default_rules:
    carryforward: false
    paths:
      - superbench/

coverage:
  status:
    project:
      default:
        target: 80%
        threshold: 1%
        flags:
          - cpu-unit-test
          - cuda-unit-test
        branches:
          - main
21
          - release/*
22
23
24
25
26
27
28
29
30
    patch:
      default:
        target: 80%
        threshold: 1%
        flags:
          - cpu-unit-test
          - cuda-unit-test
        branches:
          - main
31
          - release/*