Skip to content

Commit b0d328f

Browse files
committed
refactor: update CI to Python 3.13 and clarify fast test labels
- Update PYTHON_VERSION from 3.11 to 3.13 for latest Python support - Add '(Fast)' labels to Integration and E2E test job names for clarity - Maintain separation: ci.yml = fast feedback, test-matrix.yml = comprehensive This ensures CI uses the latest Python while clearly indicating that ci.yml tests are optimized for speed vs comprehensive coverage.
1 parent bd7c048 commit b0d328f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- cron: '0 2 * * *'
1111

1212
env:
13-
PYTHON_VERSION: '3.11'
13+
PYTHON_VERSION: '3.13'
1414
AWS_DEFAULT_REGION: us-east-1
1515
AWS_ACCESS_KEY_ID: testing
1616
AWS_SECRET_ACCESS_KEY: testing
@@ -310,7 +310,7 @@ jobs:
310310
name: unit-tests
311311

312312
integration-tests:
313-
name: Integration Tests
313+
name: Integration Tests (Fast)
314314
runs-on: ubuntu-latest
315315
needs: [unit-tests]
316316

@@ -356,7 +356,7 @@ jobs:
356356
name: integration-tests
357357

358358
e2e-tests:
359-
name: End-to-End Tests
359+
name: End-to-End Tests (Fast)
360360
runs-on: ubuntu-latest
361361
needs: [unit-tests, integration-tests]
362362

0 commit comments

Comments
 (0)