-
Notifications
You must be signed in to change notification settings - Fork 20
/
codecov.yml
40 lines (39 loc) · 1.09 KB
/
codecov.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
flag_management:
default_rules: # the rules that will be followed for any flag added, generally
carryforward: true
statuses:
- type: project
target: auto
threshold: 2%
only_pulls: true
- type: patch
target: 90%
only_pulls: true
individual_flags: # exceptions to the default rules above, stated flag by flag
- name: grai-server #fill in your own flag name
paths:
- grai-server #fill in your own path. Note, accepts globs, not regexes
carryforward: true
statuses:
- type: project
target: 20%
only_pulls: true
- type: patch
target: 100%
only_pulls: true
- name: grai-frontend #fill in your own flag name
paths:
- grai-frontend #fill in your own path. Note, accepts globs, not regexes
carryforward: true
statuses:
- type: project
target: 20%
only_pulls: true
- type: patch
target: 100%
only_pulls: true
ignore:
- "**/tests/*"
- "**/test_*.py"
- "**/*.test.*"
- "**/migrations/*"