Skip to content

Commit

Permalink
Add Tests for Python 3.12 (#352)
Browse files Browse the repository at this point in the history
* Update run-tests.yml

Test python3.12

* Update .mergify.yml to check python 3.11 and 3.12

* Update run-tests.yml

* Update run-tests.yml

* Update run-tests.yml

* Update .mergify.yml
  • Loading branch information
Wolfe1 committed Oct 18, 2023
1 parent f83dc90 commit 82076c4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
python-version: [ 3.8, 3.9, '3.10', '3.11' , '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
python-version: [ 3.8, 3.9, '3.10', '3.11' , '3.12']
include:
- os: ubuntu-latest
set_display: export DISPLAY=:99; Xvfb :99 -screen 0 1024x768x24 -ac -noreset & sleep 3
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
python-version: [ 3.8, 3.9, '3.10', '3.11' , '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
9 changes: 6 additions & 3 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,21 @@ pull_request_rules:
- and:
- author~=^dependabot
- check-success-or-neutral=CodeQL-Build
- check-success-or-neutral=run-tests-edge (3.11)
- check-success-or-neutral=run-tests-edge (3.8)
- check-success-or-neutral=run-tests-edge (3.9)
- check-success-or-neutral=run-tests-edge (3.10)
- check-success-or-neutral=run-tests-chrome (3.11)
- check-success-or-neutral=run-tests-edge (3.11)
- check-success-or-neutral=run-tests-edge (3.12)
- check-success-or-neutral=run-tests-chrome (3.8)
- check-success-or-neutral=run-tests-chrome (3.9)
- check-success-or-neutral=run-tests-chrome (3.10)
- check-success-or-neutral=run-tests-unit (3.11)
- check-success-or-neutral=run-tests-chrome (3.11)
- check-success-or-neutral=run-tests-chrome (3.12)
- check-success-or-neutral=run-tests-unit (3.8)
- check-success-or-neutral=run-tests-unit (3.9)
- check-success-or-neutral=run-tests-unit (3.10)
- check-success-or-neutral=run-tests-unit (3.11)
- check-success-or-neutral=run-tests-unit (3.12)
- check-success-or-neutral=CodeQL
- check-success-or-neutral=CodeFactor
- "check-success-or-neutral=DeepSource: Python"
Expand Down

0 comments on commit 82076c4

Please sign in to comment.