From c73f5379466d30fd05ce9f62575a79573efa8e7b Mon Sep 17 00:00:00 2001 From: Andreas Olsson Date: Sun, 12 Jan 2025 16:29:59 +0100 Subject: [PATCH] Add missing Py 3.13 tests to Integration testing workflow Should ideally have been a part of the cdd8a19 change. --- .github/workflows/integration.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 16849a0..1dbe734 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -89,3 +89,21 @@ jobs: - name: Issue scoped Access Token (Python 3.12) (unconstrained) run: docker compose -f integration/docker-compose.yaml run --no-deps testrun-py312-unconstrained issue-scoped + + - name: Import App key (Python 3.13) (constrained) + run: docker compose -f integration/docker-compose.yaml run --no-deps testrun-py313-constrained import + + - name: Issue Access Token (Python 3.13) (constrained) + run: docker compose -f integration/docker-compose.yaml run --no-deps testrun-py313-constrained issue + + - name: Issue scoped Access Token (Python 3.13) (constrained) + run: docker compose -f integration/docker-compose.yaml run --no-deps testrun-py313-constrained issue-scoped + + - name: Import App key (Python 3.13) (unconstrained) + run: docker compose -f integration/docker-compose.yaml run --no-deps testrun-py313-unconstrained import + + - name: Issue Access Token (Python 3.13) (unconstrained) + run: docker compose -f integration/docker-compose.yaml run --no-deps testrun-py313-unconstrained issue + + - name: Issue scoped Access Token (Python 3.13) (unconstrained) + run: docker compose -f integration/docker-compose.yaml run --no-deps testrun-py313-unconstrained issue-scoped