-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
286 lines (261 loc) · 5.99 KB
/
codecov.yml
File metadata and controls
286 lines (261 loc) · 5.99 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
coverage:
status:
project:
default:
target: auto
threshold: 1%
base: auto
if_ci_failed: error
patch:
default:
target: 63.5% # Updated to match jest global threshold (reduced from 64%)
threshold: 5%
if_ci_failed: error
comment:
layout: "reach,diff,flags,components,tree,files"
behavior: default
require_changes: false
require_base: false
require_head: true
flags:
utils:
paths:
- src/utils/
carryforward: true
models:
paths:
- src/models/
carryforward: true
components:
paths:
- src/components/
carryforward: true
hooks:
paths:
- src/hooks/
carryforward: true
component_management:
default_rules:
statuses:
- type: project
target: auto
branches:
- "!main"
individual_components:
# UI Layer - User-facing components
- component_id: ui_components
name: "UI Components"
paths:
- src/components/**
statuses:
- type: project
target: 70%
- type: patch
target: 75%
- component_id: ui_pages
name: "Pages"
paths:
- src/pages/**
statuses:
- type: project
target: 60%
- type: patch
target: 70%
- component_id: ui_panels
name: "Panels"
paths:
- src/panels/**
statuses:
- type: project
target: 65%
- type: patch
target: 70%
# Integration Layer - React hooks
- component_id: hooks
name: "React Hooks"
paths:
- src/hooks/**
statuses:
- type: project
target: 75%
- type: patch
target: 80%
# Device Layer - Hardware interface
- component_id: device_models
name: "Device Models"
paths:
- src/models/**
statuses:
- type: project
target: 80%
- type: patch
target: 85%
# DSP Layer - Signal processing
- component_id: dsp_core
name: "DSP Core"
paths:
- src/lib/dsp/**
statuses:
- type: project
target: 85%
- type: patch
target: 90%
- component_id: dsp_utils
name: "DSP Utilities"
paths:
- src/utils/dsp.ts
- src/utils/dspProcessing.ts
- src/utils/dspWasm.ts
- src/utils/dspBenchmark.ts
statuses:
- type: project
target: 70%
- type: patch
target: 80%
# Signal Analysis
- component_id: signal_detection
name: "Signal Detection"
paths:
- src/lib/detection/**
statuses:
- type: project
target: 80%
- type: patch
target: 85%
- component_id: signal_scanning
name: "Signal Scanning"
paths:
- src/lib/scanning/**
statuses:
- type: project
target: 75%
- type: patch
target: 80%
- component_id: signal_measurement
name: "Signal Measurement"
paths:
- src/lib/measurement/**
statuses:
- type: project
target: 80%
- type: patch
target: 85%
# Decoders
- component_id: decoders
name: "Signal Decoders"
paths:
- src/utils/rdsDecoder.ts
- src/utils/p25decoder.ts
statuses:
- type: project
target: 57%
- type: patch
target: 70%
# Audio Processing
- component_id: audio_processing
name: "Audio Processing"
paths:
- src/utils/audioStream.ts
statuses:
- type: project
target: 93%
- type: patch
target: 95%
# Recording & Playback
- component_id: recording
name: "Recording & Playback"
paths:
- src/utils/iqRecorder.ts
statuses:
- type: project
target: 77%
- type: patch
target: 85%
# Speech Recognition
- component_id: speech_recognition
name: "Speech Recognition"
paths:
- src/utils/speechRecognition.ts
statuses:
- type: project
target: 78%
- type: patch
target: 85%
# Rendering & Visualization
- component_id: rendering
name: "Rendering Engine"
paths:
- src/lib/render/**
statuses:
- type: project
target: 70%
- type: patch
target: 80%
- component_id: visualization_webgl
name: "WebGL Visualization"
paths:
- src/utils/webgl.ts
statuses:
- type: project
target: 75%
- type: patch
target: 80%
- component_id: visualization_webgpu
name: "WebGPU Visualization"
paths:
- src/utils/webgpu.ts
statuses:
- type: project
target: 70%
- type: patch
target: 80%
# Worker Management
- component_id: workers
name: "Web Workers"
paths:
- src/lib/workers/**
statuses:
- type: project
target: 75%
- type: patch
target: 80%
# Utilities & Infrastructure
- component_id: monitoring
name: "Monitoring & Metrics"
paths:
- src/lib/monitoring/**
- src/utils/performanceMonitor.ts
statuses:
- type: project
target: 70%
- type: patch
target: 75%
- component_id: utils_core
name: "Core Utilities"
paths:
- src/lib/utils/**
- src/utils/device-utils.ts
statuses:
- type: project
target: 65%
- type: patch
target: 75%
- component_id: test_infrastructure
name: "Test Infrastructure"
paths:
- src/utils/testHelpers.ts
- src/utils/testMemoryManager.ts
- src/utils/signalGenerator.ts
statuses:
- type: project
target: 95%
- type: patch
target: 100%
ignore:
- "src/index.tsx"
- "src/**/index.ts"
- "src/**/*.d.ts"
- "src/workers/**"
- "assembly/**"
- "dist/**"
- "node_modules/**"