From 93467a4ad9d556a3578d71b191addd9067b2eb73 Mon Sep 17 00:00:00 2001 From: Adrian Edwards Date: Wed, 8 Jul 2026 10:39:05 -0400 Subject: [PATCH] enable unit tests for all supported python versions this marks future ones as not required to pass for now Signed-off-by: Adrian Edwards --- .github/workflows/functional_test.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index 5ec4dc2b9..9fffe47a5 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -12,11 +12,31 @@ jobs: name: test with ${{ matrix.env }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} timeout-minutes: 15 + continue-on-error: ${{ matrix.experimental == true }} strategy: fail-fast: false matrix: - env: ["3.10", "3.11"] #, "3.12", "3.13", "3.14" + env: ["3.10", "3.11"] os: [ubuntu-latest, macos-latest] + include: + - env: "3.12" + os: ubuntu-latest + experimental: true + - env: "3.12" + os: macos-latest + experimental: true + - env: "3.13" + os: ubuntu-latest + experimental: true + - env: "3.13" + os: macos-latest + experimental: true + - env: "3.14" + os: ubuntu-latest + experimental: true + - env: "3.14" + os: macos-latest + experimental: true steps: - uses: actions/checkout@v5 - name: Install uv