From b508e083525d95a4711d82067115ca77997ac2c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= Date: Thu, 6 Nov 2025 21:12:56 +0100 Subject: [PATCH 1/3] Set asyncio_mode=auto for compatibility with pytest 8.4.0+ --- pytest.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/pytest.ini b/pytest.ini index e62899b..63d726e 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,4 @@ [pytest] filterwarnings= error +asyncio_mode=auto From 72d0b32258abd99b66209774a195859ce8a19cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= Date: Thu, 6 Nov 2025 21:24:18 +0100 Subject: [PATCH 2/3] Declare the dependency on pytest-asyncio --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 666c6fe..cdcffc6 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ def read_file(filename): + pytest_runner, tests_require=[ "pytest", + "pytest-asyncio", "pytest-cov", "pytest-pylint", "selenium", From 61a3ce72f77b5db3a515e8d9e1f5ed5feea73786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= Date: Thu, 6 Nov 2025 21:33:24 +0100 Subject: [PATCH 3/3] Update requirements-dev.txt --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index b2b4b21..348f27f 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -3,6 +3,7 @@ aiohttp==3.13.2 packaging==25.0 pytest==8.4.2 pytest-aiohttp==0.3.0 +pytest-asyncio pytest-cov==7.0.0 selenium==4.34.0 tox==4.30.3