Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.11"]
outputs:
python-key: ${{ steps.generate-python-key.outputs.key }}
steps:
Expand Down Expand Up @@ -63,8 +63,8 @@ jobs:
run: |
python -m venv venv
. venv/bin/activate
python -m pip install -U pip setuptools wheel
pip install -U -r requirements_test.txt
python -m pip install --upgrade pip setuptools wheel
pip install --upgrade -r requirements_test.txt
- name: Run pytest
run: |
. venv/bin/activate
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.11"]
steps:
- name: Set temp directory
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
Expand Down Expand Up @@ -210,8 +210,8 @@ jobs:
run: |
python -m venv venv
. venv\\Scripts\\activate
python -m pip install -U pip setuptools wheel
pip install -U -r requirements_test_min.txt
python -m pip install --upgrade pip setuptools wheel
pip install --upgrade -r requirements_test_min.txt
- name: Run pytest
run: |
. venv\\Scripts\\activate
Expand Down Expand Up @@ -256,8 +256,8 @@ jobs:
run: |
python -m venv venv
. venv/bin/activate
python -m pip install -U pip setuptools wheel
pip install -U -r requirements_test_min.txt
python -m pip install --upgrade pip setuptools wheel
pip install --upgrade -r requirements_test_min.txt
- name: Run pytest
run: |
. venv/bin/activate
Expand Down Expand Up @@ -300,8 +300,8 @@ jobs:
run: |
python -m venv venv
. venv/bin/activate
python -m pip install -U pip setuptools wheel
pip install -U -r requirements_test_min.txt
python -m pip install --upgrade pip setuptools wheel
pip install --upgrade -r requirements_test_min.txt
- name: Run pytest
run: |
. venv/bin/activate
Expand Down
Loading