Skip to content

Commit 041aaca

Browse files
committed
testing: temporarily disable pytest-asyncio integration test
Currently doesn't support pytest 9 (has a <9 bound). Should be reverted once the bound is increased.
1 parent 4253f98 commit 041aaca

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

testing/plugins_integration/pytest.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[pytest]
22
strict_markers = True
3-
asyncio_mode = strict
3+
; Temporarily disabled until adds support for pytest 9.
4+
; asyncio_mode = strict
45
filterwarnings =
56
error::pytest.PytestWarning
67
ignore:usefixtures.* without arguments has no effect:pytest.PytestWarning

testing/plugins_integration/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
anyio[trio]==4.11.0
22
django==5.2.8
3-
pytest-asyncio==1.2.0
3+
# Temporarily disabled until adds support for pytest 9.
4+
#pytest-asyncio==1.2.0
45
pytest-bdd==8.1.0
56
pytest-cov==7.0.0
67
pytest-django==4.11.1

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ commands =
175175
pytest --html=simple.html simple_integration.py
176176
pytest --reruns 5 simple_integration.py pytest_rerunfailures_integration.py
177177
pytest pytest_anyio_integration.py
178-
pytest pytest_asyncio_integration.py
178+
# Temporarily disabled until adds support for pytest 9.
179+
# pytest pytest_asyncio_integration.py
179180
pytest pytest_mock_integration.py
180181
pytest pytest_trio_integration.py
181182
pytest pytest_twisted_integration.py

0 commit comments

Comments
 (0)