forked from bakeronchain/learnvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
47 lines (44 loc) · 1003 Bytes
/
codecov.yml
File metadata and controls
47 lines (44 loc) · 1003 Bytes
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
coverage:
status:
project:
default:
target: 80%
# Allow up to 2% drop before failing — absorbs noise from small PRs
threshold: 2%
patch:
default:
target: 80%
threshold: 5%
flag_management:
default_rules:
# Carry the last uploaded report forward when a flag isn't re-uploaded
# (e.g. only the backend changed, so frontend coverage stays in history)
carryforward: true
flags:
frontend:
paths:
- src/
carryforward: true
backend:
paths:
- server/src/
carryforward: true
ignore:
# Generated contract clients
- "src/contracts/**"
# Test infrastructure
- "src/test/**"
- "server/src/tests/**"
# Entry points
- "src/main.tsx"
- "server/src/index.ts"
# Generated / boilerplate
- "server/src/openapi.ts"
- "server/src/templates/**"
- "server/src/types/**"
- "server/src/types.d.ts"
# Type declarations
- "**/*.d.ts"
# Test files
- "**/*.test.ts"
- "**/*.test.tsx"