-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yaml
64 lines (53 loc) · 1.2 KB
/
codecov.yaml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Setting coverage targets per flag
# Each project represent a package which has one flag
coverage:
status:
project:
default:
target: 90% # overall project / repo coverage
catbuffer-parser:
target: auto
flags:
- catbuffer-parser
client-catapult:
target: auto
flags:
- client-catapult
client-rest:
target: auto
flags:
- client-rest
sdk-javascript:
target: auto
flags:
- sdk-javascript
sdk-python:
target: auto
flags:
- sdk-python
# New root YAML section = `flags:`
# This is where you would define every flag from your
# uploader, and update when new Flags added
# Each flag is used to represent each package in the
# monorepo. This allows code coverage per package.
flags:
catbuffer-parser:
paths:
- catbuffer/parser
carryforward: true
client-catapult:
paths:
- client/catapult
carryforward: true
client-rest:
paths:
- client/rest
carryforward: true
sdk-javascript:
paths:
- sdk/javascript
carryforward: true
sdk-python:
paths:
- sdk/python
carryforward: true