From 59bc13c5b0b390e68ff43a6cf06e17fbfdbff689 Mon Sep 17 00:00:00 2001 From: timmy Date: Sat, 15 Aug 2026 19:01:24 +0000 Subject: [PATCH] test: stabilize transport admission deadline --- tests/test_gitea_transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_gitea_transport.py b/tests/test_gitea_transport.py index 130a17f..14545d9 100644 --- a/tests/test_gitea_transport.py +++ b/tests/test_gitea_transport.py @@ -234,7 +234,7 @@ async def test_streaming_reads_share_the_same_bounded_read_capacity(): try: await asyncio.wait_for(saturated.wait(), timeout=0.2) with pytest.raises(gitea_proxy.GiteaOverloadedError): - await asyncio.wait_for(gitea_proxy.fetch("third"), timeout=0.1) + await asyncio.wait_for(gitea_proxy.fetch("third"), timeout=1.0) finally: release.set() await asyncio.gather(*streams)