From 188d3cd4be12ecc8ba65e09138fff210435344d1 Mon Sep 17 00:00:00 2001 From: Aki Van Ness Date: Sun, 12 May 2024 19:18:51 -0700 Subject: [PATCH] ci: Gated allowance of failure on the python 3.12 and 3.13 jobs, also shortened the timeout --- .github/workflows/pr.yaml | 3 ++- .github/workflows/test.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index e0b26f21..17e031ef 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -63,8 +63,9 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Run Tests + timeout-minutes: 15 # Python 3.12 and 3.13 seem to just hang on testing ~sometimes~ + continue-on-error: ${{ matrix.python-version == '3.12' || matrix.python-version == '3.13.0-alpha.6' }} shell: bash - timeout-minutes: 30 # Python 3.12 and 3.13 seem to just hang on testing ~sometimes~ run: | nox -s test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f67b381d..f06c355e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,8 @@ jobs: - name: Run Tests shell: bash - timeout-minutes: 30 # Python 3.12 and 3.13 seem to just hang on testing ~sometimes~ + timeout-minutes: 15 # Python 3.12 and 3.13 seem to just hang on testing ~sometimes~ + continue-on-error: ${{ matrix.python-version == '3.12' || matrix.python-version == '3.13.0-alpha.6' }} run: | nox -s test -- --coverage