-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathcodecov.yml
More file actions
133 lines (128 loc) · 3.86 KB
/
Copy pathcodecov.yml
File metadata and controls
133 lines (128 loc) · 3.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# ------------------------------------------------------------------------------
# Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
#
# WSO2 LLC. licenses this file to you under the Apache License,
# Version 2.0 (the "License"); you may not use this file except
# in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# ------------------------------------------------------------------------------
codecov:
require_ci_to_pass: true
notify:
wait_for_ci: true
# Wait for exactly 5 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. frontend-apps-console-unit (from upload-frontend-coverage)
# 5. frontend-apps-gate-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/
after_n_builds: 6
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/
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
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/**"