Skip to content

Commit a45f611

Browse files
authored
Merge pull request #306 from bsipocz/CI_adding_pytest84
2 parents 2add525 + 54a7898 commit a45f611

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/python-tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,16 @@ jobs:
6262
python-version: '3.13'
6363
toxenv: py313-test-pytest83
6464
- os: windows-latest
65-
python-version: '3.14-dev'
65+
python-version: '3.13'
66+
toxenv: py313-test-pytest84
67+
- os: windows-latest
68+
python-version: '3.14'
6669
toxenv: py314-test-pytestdev
6770
- os: macos-latest
68-
python-version: '3.14-dev'
71+
python-version: '3.14'
6972
toxenv: py314-test-pytestdev
7073
- os: ubuntu-latest
71-
python-version: '3.14-dev'
74+
python-version: '3.14'
7275
toxenv: py314-test-pytestdev-numpydev
7376
- os: ubuntu-latest
7477
python-version: '3.13'

tests/test_doctestplus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ def f():
12141214

12151215

12161216
@pytest.mark.xfail(
1217-
python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.11.12', '3.11.13', '3.12.3'),
1217+
python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.11.12', '3.11.13', '3.11.14', '3.12.3'),
12181218
reason='broken by https://github.com/python/cpython/pull/115440')
12191219
def test_ufunc(testdir):
12201220
pytest.importorskip('numpy')

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ deps =
3131
pytest81: pytest==8.1.*
3232
pytest82: pytest==8.2.*
3333
pytest83: pytest==8.3.*
34+
pytest84: pytest==8.4.*
3435
pytestdev: git+https://github.com/pytest-dev/pytest#egg=pytest
3536
numpydev: numpy>=0.0.dev0
3637
pytestasyncio: pytest-asyncio

0 commit comments

Comments
 (0)