-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
119 lines (116 loc) · 2.86 KB
/
Copy pathcodecov.yml
File metadata and controls
119 lines (116 loc) · 2.86 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
coverage:
status:
project:
default:
informational: true
patch:
default:
informational: true
flags:
unit:
carryforward: true
cli:
carryforward: true
docker:
carryforward: true
idp:
carryforward: true
openbao:
carryforward: true
pak:
carryforward: true
redis:
carryforward: true
ui:
carryforward: true
process-root:
carryforward: true
process-setuid:
carryforward: true
process-unprivileged:
carryforward: true
examples:
carryforward: true
e2e:
carryforward: true
ignore:
- "internal/testutil/**" # test helpers only
- "internal/preflight/docker_checks.go" # moved to internal/backend/docker/preflight.go in 207dd28; carryforward keeps the ghost report alive
# Components mirror the commit-message scopes in AGENTS.md so coverage
# attribution follows the same mental model as commits. Paths not
# covered by any component (internal/config, internal/appname,
# cmd/coverage-check) still count in the repo total.
component_management:
default_rules:
statuses:
- type: project
target: auto
informational: true
individual_components:
- component_id: proxy
name: proxy
paths:
- internal/api/**
- internal/proxy/**
- internal/server/**
- internal/ops/**
- component_id: ui
name: ui
paths:
- internal/ui/**
- internal/docs/**
- component_id: auth
name: auth
paths:
- internal/auth/**
- internal/authz/**
- internal/session/**
- internal/audit/**
- internal/integration/**
- component_id: cli
name: cli
paths:
- cmd/by/**
- cmd/by-builder/**
- internal/apiclient/**
- internal/cliconfig/**
- internal/deploy/**
- internal/update/**
- component_id: db
name: db
paths:
- internal/db/**
- internal/registry/**
- internal/redisstate/**
- internal/boardstorage/**
- internal/logstore/**
- component_id: docker
name: docker
paths:
- internal/backend/docker/**
- component_id: process
name: process
paths:
- cmd/blockyard/**
- cmd/seccomp-compile/**
- cmd/seccomp-merge/**
- internal/backend/process/**
- internal/build/**
- internal/buildercache/**
- internal/bundle/**
- internal/detect/**
- internal/drain/**
- internal/manifest/**
- internal/mount/**
- internal/orchestrator/**
- internal/pakcache/**
- internal/pkgstore/**
- internal/preflight/**
- internal/seccomp/**
- internal/task/**
- internal/units/**
- component_id: telemetry
name: telemetry
paths:
- internal/telemetry/**
- internal/errorlog/**