chore(python): Add support for Python 3.14 #374
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| name: Run Spanner integration tests against emulator with regular sessions | |
| jobs: | |
| system-tests: | |
| runs-on: ubuntu-latest | |
| services: | |
| emulator: | |
| image: gcr.io/cloud-spanner-emulator/emulator:latest | |
| ports: | |
| - 9010:9010 | |
| - 9020:9020 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.14 | |
| - name: Install nox | |
| run: python -m pip install nox | |
| - name: Run system tests | |
| run: nox -s system | |
| env: | |
| SPANNER_EMULATOR_HOST: localhost:9010 | |
| GOOGLE_CLOUD_PROJECT: emulator-test-project | |
| GOOGLE_CLOUD_TESTS_CREATE_SPANNER_INSTANCE: true | |
| GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS: false | |
| GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS_PARTITIONED_OPS: false | |
| GOOGLE_CLOUD_SPANNER_MULTIPLEXED_SESSIONS_FOR_RW: false |