-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
156 lines (126 loc) · 3.11 KB
/
codecov.yml
File metadata and controls
156 lines (126 loc) · 3.11 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# Codecov configuration for Orpheus monorepo
# NOTE: CODECOV_TOKEN is required. Keep this secret configured even after going open source.
codecov:
require_ci_to_pass: yes
# Define coverage flags for each component
flags:
orpheus-common:
paths:
- platform/orpheus-common/
target: 78%
orpheus-dashboard:
paths:
- services/orpheus-dashboard/
target: 80%
orpheus-gps:
paths:
- services/orpheus-gps/
target: 70%
orpheus-ui-backend:
paths:
- services/orpheus_ui/backend/
target: 70%
orpheus-ui-frontend:
paths:
- services/orpheus_ui/frontend/
target: 70%
orpheus-agent-audio-motion:
paths:
- agents/orpheus-agent-audio-motion/
target: 72%
orpheus-agent-audio-playback:
paths:
- agents/orpheus-agent-audio-playback/
target: 70%
orpheus-agent-bird-detection:
paths:
- agents/orpheus-agent-bird-detection/
target: 70%
orpheus-agent-crow-detection:
paths:
- agents/orpheus-agent-crow-detection/
target: 70%
orpheus-agent-event-correlator:
paths:
- agents/orpheus-agent-event-correlator/
target: 70%
orpheus-agent-video-motion:
paths:
- agents/orpheus-agent-video-motion/
target: 70%
orpheus-agent-video-snapshotter:
paths:
- agents/orpheus-agent-video-snapshotter/
target: 70%
orpheus-agent-video-timelapser:
paths:
- agents/orpheus-agent-video-timelapser/
target: 70%
# Project-level coverage checks
coverage:
status:
project:
default:
informational: true
target: auto
orpheus-common:
flags:
- orpheus-common
target: 78%
orpheus-dashboard:
flags:
- orpheus-dashboard
target: 80%
orpheus-gps:
flags:
- orpheus-gps
target: 70%
orpheus-ui-backend:
flags:
- orpheus-ui-backend
target: 70%
orpheus-ui-frontend:
flags:
- orpheus-ui-frontend
target: 70%
orpheus-agent-audio-motion:
flags:
- orpheus-agent-audio-motion
target: 72%
orpheus-agent-audio-playback:
flags:
- orpheus-agent-audio-playback
target: 70%
orpheus-agent-bird-detection:
flags:
- orpheus-agent-bird-detection
target: 70%
orpheus-agent-crow-detection:
flags:
- orpheus-agent-crow-detection
target: 70%
orpheus-agent-event-correlator:
flags:
- orpheus-agent-event-correlator
target: 70%
orpheus-agent-video-motion:
flags:
- orpheus-agent-video-motion
target: 70%
orpheus-agent-video-snapshotter:
flags:
- orpheus-agent-video-snapshotter
target: 70%
orpheus-agent-video-timelapser:
flags:
- orpheus-agent-video-timelapser
target: 70%
# Patch coverage is informational only
patch:
default:
informational: true
# Disable PR comments (informational only)
comment:
require_changes: false
require_base: false
require_head: false