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

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

coverage:
  status:
    project:
      default:
        target: 80%
        threshold: 1%
        flags:
17
18
          - cpu-python3.6-unit-test
          - cpu-python3.7-unit-test
19
20
21
          - cuda-unit-test
        branches:
          - main
22
          - release/*
23
24
25
26
27
    patch:
      default:
        target: 80%
        threshold: 1%
        flags:
28
29
          - cpu-python3.6-unit-test
          - cpu-python3.7-unit-test
30
31
32
          - cuda-unit-test
        branches:
          - main
33
          - release/*