Skip to content

Commit cf564a4

Browse files
committed
Skip on Python >= 3.14 test_write_timeout(trio_server)
1 parent 0e8ef4e commit cf564a4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_timeouts.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import sys
2+
13
import pytest
24

35
import httpx
@@ -13,6 +15,7 @@ async def test_read_timeout(server):
1315

1416

1517
@pytest.mark.anyio
18+
@pytest.mark.xfail(sys.version_info >= (3, 14), reason="Fix trio on Python >= 3.14")
1619
async def test_write_timeout(server):
1720
timeout = httpx.Timeout(None, write=1e-6)
1821

0 commit comments

Comments
 (0)