-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
39 lines (36 loc) · 1.02 KB
/
Copy pathcodecov.yml
File metadata and controls
39 lines (36 loc) · 1.02 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
coverage:
status:
project:
default:
target: auto
threshold: 1%
patch:
default:
target: 80%
flags:
rust:
paths:
- apps/desktop/src-tauri/
carryforward: true
go:
paths:
- apps/desktop/src-sidecar/
carryforward: true
typescript:
paths:
- apps/desktop/src/
carryforward: true
ignore:
- "apps/desktop/src-tauri/target/"
- "apps/desktop/src-tauri/gen/"
- "apps/desktop/node_modules/"
- "apps/desktop/dist/"
- "apps/desktop/src-sidecar/cmd/" # entry-point shims; logic lives in internal/sidecar
- "apps/desktop/src-sidecar/internal/youtube/ytpb/" # generated protobuf/grpc bindings
- "apps/desktop/src-tauri/src/lib.rs" # tauri entry + setup wiring; logic lives in host.rs
- "apps/desktop/src-tauri/src/main.rs" # 3-line binary shim
- "apps/desktop/src-tauri/src/twitch_auth/commands.rs" # thin #[tauri::command] adapters; logic lives in auth_state.rs
comment:
layout: "reach,diff,flags"
behavior: default
require_changes: false