-
Notifications
You must be signed in to change notification settings - Fork 10
367 lines (337 loc) · 14 KB
/
Copy pathci-tests.yml
File metadata and controls
367 lines (337 loc) · 14 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
name: Unit Tests
on:
push:
branches: [ main, develop ]
paths:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'requirements*.txt'
- 'uv.lock'
- 'assets/**'
- 'rxconfig.py'
- '.github/workflows/ci-tests.yml'
pull_request:
branches: [ main, develop ]
paths:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'requirements*.txt'
- 'uv.lock'
- 'assets/**'
- 'rxconfig.py'
- '.github/workflows/ci-tests.yml'
schedule:
- cron: '0 2 * * *'
# workflow_dispatch: allows re-running tests manually from the Actions UI
workflow_dispatch:
# Cancel in-progress runs when a new push arrives on the same branch/ref.
# Scheduled nightly runs use a stable group key so they never cancel each
# other (there is only ever one running at a time by schedule).
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
config:
name: Configuration
uses: ./.github/workflows/shared-config.yml
setup-cache:
name: Setup Test Cache
needs: config
uses: ./.github/workflows/cache-management.yml
with:
cache-type: dependencies
cache-key-base: test-deps
python-version: ${{ needs.config.outputs.default-python-version }}
# Parallel test-group matrix (T2613): splits the non-provider test corpus
# into independent legs that each run on their own runner with xdist within
# the leg. Legs: unit (tests/unit), infrastructure (tests/infrastructure),
# integration (tests/integration). Provider legs are handled by the
# providers-tests matrix below and remain driven by discovery.
#
# The standalone `tests`, `integration-tests`, and `infrastructure-tests` jobs
# that previously ran these same suites have been removed; test-groups is their
# replacement. artifact-prefix uses `ci-tests-group` (not `ci-tests`) so that
# actions/upload-artifact@v4 does not error on duplicate artifact names within
# the same run (each matrix leg's artifact is named `<prefix>-<test-type>-…`).
test-groups:
name: Test Groups (Parallel)
needs: [config, setup-cache]
strategy:
fail-fast: false
matrix:
test-group: [unit, infrastructure, integration]
uses: ./.github/workflows/reusable-test.yml
secrets: inherit
with:
test-type: ${{ matrix.test-group }}
python-version: ${{ needs.config.outputs.default-python-version }}
default-python-version: ${{ needs.config.outputs.default-python-version }}
continue-on-error: false
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
artifact-prefix: ci-tests-group
aws-region: ${{ needs.config.outputs.aws-region }}
aws-access-key: ${{ needs.config.outputs.aws-access-key }}
aws-secret-key: ${{ needs.config.outputs.aws-secret-key }}
environment: ${{ needs.config.outputs.environment }}
testing-flag: ${{ needs.config.outputs.testing-flag }}
# e2e-tests run against an in-process TestClient app — no live infrastructure
# required — so they gate like every other leg. (They previously ran with
# continue-on-error: true, which silently masked 23 genuine failures.)
e2e-tests:
name: End-to-End Tests (Default Python)
needs: [config, setup-cache]
uses: ./.github/workflows/reusable-test.yml
secrets: inherit
with:
test-type: e2e
python-version: ${{ needs.config.outputs.default-python-version }}
default-python-version: ${{ needs.config.outputs.default-python-version }}
continue-on-error: false
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
artifact-prefix: ci-tests
aws-region: ${{ needs.config.outputs.aws-region }}
aws-access-key: ${{ needs.config.outputs.aws-access-key }}
aws-secret-key: ${{ needs.config.outputs.aws-secret-key }}
environment: ${{ needs.config.outputs.environment }}
testing-flag: ${{ needs.config.outputs.testing-flag }}
# Per-provider matrix. One job per discovered provider subtree under
# tests/providers/. Discovery runs in the shared-config job: any directory
# that has a tests/providers/<name>/testconf.mk becomes a matrix entry.
# Adding a new provider directory with testconf.mk requires no workflow edit.
providers-tests:
name: Providers Tests
needs: [config, setup-cache]
strategy:
fail-fast: false
matrix:
# Dynamic: fromJSON(needs.config.outputs.providers) is populated by the
# shared-config discover step. The static fallback ['aws'] keeps CI
# valid in forks or contexts where discovery cannot run.
provider: ${{ fromJSON(needs.config.outputs.providers || '["aws"]') }}
uses: ./.github/workflows/reusable-test.yml
secrets: inherit
with:
test-type: providers
provider: ${{ matrix.provider }}
python-version: ${{ needs.config.outputs.default-python-version }}
default-python-version: ${{ needs.config.outputs.default-python-version }}
continue-on-error: false
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
artifact-prefix: ci-tests
# Provider suites are the heaviest legs (aws moto ≈ 270s of CPU-bound
# mocking). Run them on a 16-vCPU runner with one xdist worker per core.
os: ${{ vars.LARGE_RUNNER || 'ubuntu-latest-16-cores' }}
workers: auto
aws-region: ${{ needs.config.outputs.aws-region }}
aws-access-key: ${{ needs.config.outputs.aws-access-key }}
aws-secret-key: ${{ needs.config.outputs.aws-secret-key }}
environment: ${{ needs.config.outputs.environment }}
testing-flag: ${{ needs.config.outputs.testing-flag }}
# Serial-marked provider tests (currently the live subtree of each provider).
# The make target points pytest directly at ``tests/providers/<provider>/live``
# because ``norecursedirs`` excludes that path from auto-recursion. Without
# ``--live`` the root conftest stamps every live test with ``skip_live``, so
# the job collects the suite, reports SKIPPED, and exits 0 — that proves the
# collection wiring + skip mechanism still work end-to-end on every PR.
# When CI is wired up with real credentials, set ``PYTEST_LIVE=--live``
# in the workflow env to flip the suite into actual execution.
providers-tests-serial:
name: Providers Tests (Serial)
needs: [config, setup-cache, providers-tests]
strategy:
fail-fast: false
matrix:
# Same dynamic discovery as providers-tests above.
provider: ${{ fromJSON(needs.config.outputs.providers || '["aws"]') }}
uses: ./.github/workflows/reusable-test.yml
secrets: inherit
with:
test-type: providers-serial
provider: ${{ matrix.provider }}
python-version: ${{ needs.config.outputs.default-python-version }}
default-python-version: ${{ needs.config.outputs.default-python-version }}
continue-on-error: false
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
artifact-prefix: ci-tests
aws-region: ${{ needs.config.outputs.aws-region }}
aws-access-key: ${{ needs.config.outputs.aws-access-key }}
aws-secret-key: ${{ needs.config.outputs.aws-secret-key }}
environment: ${{ needs.config.outputs.environment }}
testing-flag: ${{ needs.config.outputs.testing-flag }}
ui-unit-tests:
name: UI Unit Tests
needs: [config, setup-cache]
uses: ./.github/workflows/reusable-test.yml
secrets: inherit
with:
test-type: ui-unit
python-version: ${{ needs.config.outputs.default-python-version }}
default-python-version: ${{ needs.config.outputs.default-python-version }}
continue-on-error: false
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
artifact-prefix: ci-tests
aws-region: ${{ needs.config.outputs.aws-region }}
aws-access-key: ${{ needs.config.outputs.aws-access-key }}
aws-secret-key: ${{ needs.config.outputs.aws-secret-key }}
environment: ${{ needs.config.outputs.environment }}
testing-flag: ${{ needs.config.outputs.testing-flag }}
ui-smoke:
name: UI Smoke
needs: [config, setup-cache]
uses: ./.github/workflows/reusable-test.yml
secrets: inherit
with:
test-type: ui-smoke
python-version: ${{ needs.config.outputs.default-python-version }}
default-python-version: ${{ needs.config.outputs.default-python-version }}
continue-on-error: false
# ui-smoke runs run_ui_smoke.sh (no pytest) so no coverage XML is produced.
upload-coverage: false
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
artifact-prefix: ci-tests
aws-region: ${{ needs.config.outputs.aws-region }}
aws-access-key: ${{ needs.config.outputs.aws-access-key }}
aws-secret-key: ${{ needs.config.outputs.aws-secret-key }}
environment: ${{ needs.config.outputs.environment }}
testing-flag: ${{ needs.config.outputs.testing-flag }}
build-and-package:
name: Build & Package
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [config, setup-cache]
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup UV with cache
uses: ./.github/actions/setup-uv-cached
with:
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
fail-on-cache-miss: false
- name: Build package
run: make build
- name: Upload build artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: build-artifacts-${{ needs.config.outputs.package-version }}
retention-days: 60
path: |
dist/
build/
test-report:
name: Generate Test Report
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [config, setup-cache, test-groups, e2e-tests, providers-tests, providers-tests-serial, ui-unit-tests, ui-smoke]
if: always()
permissions:
contents: read
issues: read
checks: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup UV with cache
uses: ./.github/actions/setup-uv-cached
with:
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
fail-on-cache-miss: false
- name: Download test results
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: test-results/
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@d0a4676d0e0b938bc201470d88276b7c74c712b3 # v2
if: always()
continue-on-error: true
with:
files: "test-results/**/junit-*.xml"
check_name: "Test Results Summary"
comment_mode: "always"
job_summary: true
action_fail: false
fail_on: "nothing"
# Self-contained combined-coverage gate: merges the per-leg .coverage data
# (uploaded by reusable-test) and enforces the threshold locally, so the hard
# gate does not depend on Codecov's external service. Codecov still receives
# each leg's upload for the PR-comment diff view.
coverage-combine:
name: Coverage Gate (Combined)
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [config, setup-cache, test-groups, e2e-tests, providers-tests, ui-unit-tests]
if: always()
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup UV with cache
uses: ./.github/actions/setup-uv-cached
with:
cache-key: ${{ needs.setup-cache.outputs.cache-key }}
fail-on-cache-miss: false
- name: Download coverage artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: coverage-artifacts/
- name: Gather per-leg .coverage data files
run: |
# Each leg uploads a .coverage data file inside its test-results-* dir.
# coverage combine expects them in CWD with unique .coverage.<suffix> names.
i=0
find coverage-artifacts -name '.coverage*' -type f | while read -r f; do
cp "$f" ".coverage.leg${i}"
i=$((i + 1))
done
ls -la .coverage* 2>/dev/null || echo "no .coverage data files found"
- name: Combine coverage and enforce combined threshold
id: coverage-gate
run: make ci-tests-coverage-check
# Single deterministic Codecov upload: the combined report from ALL legs is
# sent once here, instead of each leg uploading separately. Codecov then
# shows one stable number (no mid-run partial-merge flapping) and this needs
# no hardcoded leg count — it auto-scales to any number of provider legs.
# if: always() so the report uploads even when the threshold gate fails
# above (the job still fails on the gate; Codecov still gets the data).
- name: Upload combined coverage to Codecov
if: always()
continue-on-error: true
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage-combined.xml
name: combined
# Overwrite any prior partial report for this commit with the full merge.
override_commit: ${{ github.event.pull_request.head.sha || github.sha }}
# Single stable required status check for branch protection. Replaces listing
# every individual job name (which drifts silently when jobs are renamed).
# Register "CI Passed" as the sole required check in branch protection.
ci-passed:
name: CI Passed
runs-on: ubuntu-latest
timeout-minutes: 5
if: always()
needs:
- config
- setup-cache
- test-groups
- e2e-tests
- providers-tests
- providers-tests-serial
- ui-unit-tests
- ui-smoke
- build-and-package
- coverage-combine
- test-report
steps:
- name: Check all required jobs passed
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}