-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
47 lines (41 loc) · 1.03 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
41
42
43
44
45
46
47
# Setting coverage targets per flag
coverage:
status:
project:
default:
target: 90% #overall project/ repo coverage
angular:
target: 80%
flags:
- 'Frontend-Unit-Tests'
- 'Frontend-Integration-Tests'
paths:
- "angular"
spring:
target: 80%
flags:
- 'Backend-Unit-Tests'
- 'Backend-Integration-Tests'
paths:
- "spring"
# adding Flags to your `layout` configuration to show up in the PR comment
comment:
layout: "diff, flags"
behavior: new
require_changes: false
require_base: yes
require_head: yes
branches: null
show_carryforward_flags: true
# New root YAML section = `flags:`
# This is where you would define every flag from your
# uploader, and update when new Flags added
flags:
'Frontend-Unit-Tests':
carryforward: true
'Frontend-Integration-Tests':
carryforward: true
'Backend-Unit-Tests':
carryforward: true
'Backend-Integration-Tests':
carryforward: true