From f38a427958824cfc16667b456c8920148445e888 Mon Sep 17 00:00:00 2001 From: Matthew Robertson Date: Fri, 2 Dec 2022 21:37:45 +0000 Subject: [PATCH] test: add 3.11 to unit and conformance tests In preparation for adding the python311 runtime to GCF, we should start testing this version. --- .github/workflows/conformance.yml | 4 ++-- .github/workflows/unit.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 09752c94..9ae8a51e 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - name: Checkout code uses: actions/checkout@v2 @@ -75,4 +75,4 @@ jobs: functionType: 'http' useBuildpacks: false validateConcurrency: true - cmd: "'functions-framework --source tests/conformance/main.py --target write_http_declarative_concurrent'" \ No newline at end of file + cmd: "'functions-framework --source tests/conformance/main.py --target write_http_declarative_concurrent'" diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index ea147493..39bd1be1 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - python: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python: ['3.7', '3.8', '3.9', '3.10', '3.11'] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: