forked from RicterZ/BGmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
37 lines (34 loc) · 923 Bytes
/
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
coverage:
precision: 2 # how many decimal places to display in the UI: 0 <= value <= 4
round: down # how coverage is rounded: down/up/nearest
range: 50...80 # custom range of coverage colors from red -> yellow -> green
status:
project: # measuring the overall project coverage
front:
flags: front
app:
flags: app
downloader:
flags: downloader
test:
target: 95%
flags: tests
default: off # context, you can create multiple ones with custom titles
flags:
# filter the folder(s) you wish to measure by that flag
front:
paths:
- 'bgmi/front/'
app:
paths:
- 'bgmi/'
- '!bgmi/front/'
- '!bgmi/downloader/'
downloader:
paths:
- 'bgmi/downloader/'
tests:
paths:
- 'tests/'
# comment: false # to disable comments
comment: false