Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ jobs:
python-version: '3.13'
toxenv: py313-test-pytest83
- os: windows-latest
python-version: '3.13'
toxenv: py313-test-pytestdev
python-version: '3.14-dev'
toxenv: py314-test-pytestdev
- os: macos-latest
python-version: '3.12'
toxenv: py312-test-pytestdev
python-version: '3.14-dev'
toxenv: py314-test-pytestdev
- os: ubuntu-latest
python-version: '3.13'
toxenv: py313-test-pytestdev-numpydev
python-version: '3.14-dev'
toxenv: py314-test-pytestdev-numpydev
- os: ubuntu-latest
python-version: '3.13'
toxenv: py313-test-pytest83-pytestasyncio
Expand Down
2 changes: 2 additions & 0 deletions tests/test_doctestplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,8 @@ def f():
).assertoutcome(passed=2)


# We see unclosed file ResourceWarning on windows with python 3.14
@pytest.mark.filterwarnings('ignore:unclosed file:ResourceWarning')
def test_doctest_only(testdir, makepyfile, maketestfile, makerstfile):
# regular python files with doctests
makepyfile(p1='>>> 1 + 1\n2')
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{39,310,311,312,313}-test
py{39,310,311,312,313,314}-test
codestyle
requires =
setuptools >= 30.3.0
Expand Down
Loading