Skip to content

Commit

Permalink
ci: Gated allowance of failure on the python 3.12 and 3.13 jobs, also…
Browse files Browse the repository at this point in the history
… shortened the timeout
  • Loading branch information
lethalbit committed May 13, 2024
1 parent 62af9fe commit 188d3cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 188d3cd

Please sign in to comment.