forked from thunder-id/thunderid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
128 lines (123 loc) · 3.59 KB
/
Copy pathcodecov.yml
File metadata and controls
128 lines (123 loc) · 3.59 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
# Copyright 2025 The ThunderID Authors
# SPDX-License-Identifier: Apache-2.0
codecov:
require_ci_to_pass: true
notify:
wait_for_ci: true
# Wait for exactly 7 coverage uploads before reporting status:
# 1. backend-unit (from build job)
# 2. backend-integration-sqlite (from test-integration matrix)
# 3. backend-integration-postgres (from test-integration matrix)
# 4. backend-integration-redis (from test-integration matrix)
# 5. frontend-apps-console-unit (from upload-frontend-coverage)
# 6. frontend-apps-gate-unit (from upload-frontend-coverage)
# 7. frontend-packages-unit (from upload-frontend-coverage)
# Without this, Codecov status checks can intermittently hang at
# "Expected — Waiting for status to be reported" when CI signal is delayed.
# See: https://about.codecov.io/blog/delay-notifications-for-flags-with-after_n_builds/
#
# REQUIRED_SESSIONS in .github/actions/patch-coverage-gate/check-codecov-api.sh
# mirrors this number; change both together or the gate reads a partial comparison.
after_n_builds: 7
flags:
backend-unit:
carryforward: false
paths:
- backend/
backend-integration-sqlite:
carryforward: false
paths:
- backend/
backend-integration-postgres:
carryforward: false
paths:
- backend/
backend-integration-redis:
carryforward: false
paths:
- backend/
frontend-apps-console-unit:
carryforward: false
paths:
- frontend/apps/console/
frontend-apps-gate-unit:
carryforward: false
paths:
- frontend/apps/gate/
frontend-packages-unit:
carryforward: false
paths:
- frontend/packages/
coverage:
status:
project:
default:
enabled: true
target: 60%
threshold: 1%
informational: false
backend-unit:
flags:
- backend-unit
target: 60%
threshold: 1%
informational: false
backend-integration:
flags:
- backend-integration-sqlite
- backend-integration-postgres
target: 60%
threshold: 1%
informational: false
backend-combined:
flags:
- backend-unit
- backend-integration-sqlite
- backend-integration-postgres
- backend-integration-redis
target: auto
threshold: 1%
informational: false
combined:
flags:
- backend-unit
- backend-integration-sqlite
- backend-integration-postgres
- backend-integration-redis
- frontend-apps-console-unit
- frontend-apps-gate-unit
- frontend-packages-unit
target: auto
threshold: 1%
informational: false
frontend-apps-console-unit:
flags:
- frontend-apps-console-unit
target: 60%
threshold: 1%
informational: false
frontend-apps-gate-unit:
flags:
- frontend-apps-gate-unit
target: 60%
threshold: 1%
informational: false
patch:
default:
target: 80%
threshold: 1%
informational: false
bundle_analysis:
# Comment-only: post an informational status and PR comment showing bundle-size
# changes for the gate and console apps, but never fail/block a PR.
# To start blocking later, set `status: true` and add a `bundle_change_threshold`.
status: informational
# Flag the comment with a warning when a bundle grows by more than 5%.
warning_threshold: "5%"
ignore:
- "backend/tests/**"
- "**/*_test.go"
- "tests/**"
- "samples/**"
- "docs/**"
- "api/**"