From 903a1fdf3cf779c8561d53ce9c9cc9f6017b4eac Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Thu, 22 Jan 2026 18:32:01 +0100 Subject: [PATCH] tests: Add pytest-asyncio for ASGI worker tests The ASGI worker tests use @pytest.mark.asyncio decorator which requires the pytest-asyncio plugin to be installed. --- requirements_test.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements_test.txt b/requirements_test.txt index b618d1a7..efa91f20 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -3,3 +3,4 @@ eventlet coverage pytest>=7.2.0 pytest-cov +pytest-asyncio