forked from e2b-dev/infra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
40 lines (35 loc) · 1.36 KB
/
Copy pathcodecov.yml
File metadata and controls
40 lines (35 loc) · 1.36 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
# Coverage signal only — never gates merges. Carries forward per-flag so
# shards that didn't run keep their last-known number instead of dropping to 0%.
# Coverage info lives in the codecov/* status checks (click to expand).
# The PR comment is kept (with minimal coverage layout) because Test
# Analytics (failed + flaky tests) ships in the same comment.
coverage:
status:
project:
default: { informational: true, only_pulls: true }
patch:
default: { informational: true, only_pulls: true }
comment:
layout: "condensed_header"
hide_project_coverage: true
require_changes: false
require_base: false
require_head: true
flag_management:
default_rules:
carryforward: true
component_management:
individual_components:
- { component_id: api, paths: ["packages/api/**"] }
- { component_id: client-proxy, paths: ["packages/client-proxy/**"] }
- { component_id: db, paths: ["packages/db/**"] }
- { component_id: docker-reverse-proxy, paths: ["packages/docker-reverse-proxy/**"] }
- { component_id: envd, paths: ["packages/envd/**"] }
- { component_id: orchestrator, paths: ["packages/orchestrator/**"] }
- { component_id: shared, paths: ["packages/shared/**"] }
ignore:
- "**/*.gen.go" # oapi-codegen
- "**/*.sql.go" # sqlc
- "**/*.pb.go" # protoc (message + grpc)
- "**/mocks/**" # mockery
- "**/testdata/**"