forked from asgardeo/thunder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
116 lines (112 loc) · 3.22 KB
/
codecov.yml
File metadata and controls
116 lines (112 loc) · 3.22 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
# ------------------------------------------------------------------------------
# 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: 5
flags:
backend-unit:
carryforward: false
paths:
- backend/
backend-integration-sqlite:
carryforward: false
paths:
- backend/
backend-integration-postgres:
carryforward: false
paths:
- backend/
# backend-combined-sqlite:
# carryforward: false
# paths:
# - backend/
# backend-combined-postgres:
# 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: auto
threshold: 1%
informational: true
backend-unit:
flags:
- backend-unit
target: auto
threshold: 1%
informational: false
backend-integration:
flags:
- backend-integration-sqlite
- backend-integration-postgres
target: auto
threshold: 1%
informational: false
# backend-combined:
# flags:
# - backend-combined-sqlite
# - backend-combined-postgres
# target: auto
# threshold: 1%
# informational: false
frontend-apps-console-unit:
flags:
- frontend-apps-console-unit
target: auto
threshold: 1%
informational: false
frontend-apps-gate-unit:
flags:
- frontend-apps-gate-unit
target: auto
threshold: 1%
informational: false
patch:
default:
target: 80%
threshold: 1%
informational: true
ignore:
- "backend/tests/**"
- "**/*_test.go"
- "tests/**"
- "samples/**"
- "docs/**"
- "api/**"