Skip to content

Commit b78a372

Browse files
committed
CI: adding testing with pytest 8.0.x
1 parent 63b80a6 commit b78a372

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/python-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,15 @@ jobs:
5757
- os: ubuntu-latest
5858
python-version: '3.11'
5959
toxenv: py311-test-pytest74
60-
toxargs: --pre
60+
- os: ubuntu-latest
61+
python-version: '3.12'
62+
toxenv: py312-test-pytest80
63+
- os: macos-latest
64+
python-version: '3.12'
65+
toxenv: py312-test-pytest80
66+
- os: windows-latest
67+
python-version: '3.12'
68+
toxenv: py312-test-pytest80
6169
- os: macos-latest
6270
python-version: '3.11'
6371
toxenv: py311-test-pytestdev

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,18 @@ deps =
2626
pytest72: pytest==7.2.*
2727
pytest73: pytest==7.3.*
2828
pytest74: pytest==7.4.*
29+
pytest80: pytest==8.0.*
2930
pytestdev: git+https://github.com/pytest-dev/pytest#egg=pytest
3031
numpydev: numpy>=0.0.dev0
3132

3233
extras =
3334
test
3435

36+
# Temporary measures to be able to test on 8.0.x in its RC cycle
37+
pip_pre =
38+
pytest80: true
39+
!pytest80: false
40+
3541
commands =
3642
pip freeze
3743
# Ignore directly running tests in ``skip_some_remote_data.rst`` with

0 commit comments

Comments
 (0)