Skip to content
Open
Show file tree
Hide file tree
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
26 changes: 19 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,31 @@ jobs:
toxenv: py
tox_extra_args: "-n 4"
test_mypyc: true
- name: Test suite with py313-windows-64
python: '3.13'
os: windows-latest
- name: Test suite with py314-ubuntu, mypyc-compiled
python: '3.14'
os: ubuntu-24.04-arm
toxenv: py
tox_extra_args: "-n 4"

- name: Test suite with py314-dev-ubuntu
python: '3.14-dev'
test_mypyc: true
- name: Test suite with py314t-ubuntu, mypyc-compiled
python: '3.14t'
os: ubuntu-24.04-arm
toxenv: py
tox_extra_args: "-n 4"
# allow_failure: true
test_mypyc: true
- name: Test suite with py313-windows-64
python: '3.13'
os: windows-latest
toxenv: py
tox_extra_args: "-n 4"

# - name: Test suite with py315-dev-ubuntu
# python: '3.15-dev'
# os: ubuntu-24.04-arm
# toxenv: py
# tox_extra_args: "-n 4"
# # allow_failure: true
# test_mypyc: true

- name: mypyc runtime tests with py39-macos
python: '3.9.21'
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-r build-requirements.txt
attrs>=18.0
filelock>=3.3.0,<3.20.0 # latest version is not available on 3.9 that we still support
lxml>=5.3.0; python_version<'3.15'
lxml>=5.3.0; python_version<'3.14' # lxml doesn't ship wheels for cp314t yet
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be updated if PEP 780 get's accepted. It's still a draft though at the moment.
https://peps.python.org/pep-0780/#examples

psutil>=4.0
pytest>=8.1.0
pytest-xdist>=1.34.0
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ iniconfig==2.1.0
# via pytest
librt==0.2.3
# via -r mypy-requirements.txt
lxml==6.0.2 ; python_version < "3.15"
lxml==6.0.2 ; python_version < "3.14"
# via -r test-requirements.in
mypy-extensions==1.1.0
# via -r mypy-requirements.txt
Expand Down
Loading