From c612e0a1908d50d51100c56f59fb9888b4ce3275 Mon Sep 17 00:00:00 2001 From: Iurii Pliner Date: Sun, 1 Sep 2024 21:55:09 +0100 Subject: [PATCH] Fix no async plugin warnings --- requirements-dev.txt | 2 +- setup.cfg | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 4961428..b81d479 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1 +1 @@ -pytest==8.3.2 pytest-aiohttp==1.0.5 pytest-pg==0.0.21 pytest-runner==6.0.1 isort==5.13.2 flake8==7.1.1 pyright==1.1.378 black==24.8.0 asyncpg==0.29.0 async-timeout==4.0.3; python_version<"3.12" setuptools==74.0.0 wheel==0.44.0 twine==5.1.1 opentelemetry-api>=1.19 \ No newline at end of file +pytest==8.3.2 pytest-aiohttp==1.0.5 pytest-pg==0.0.21 pytest-runner==6.0.1 pytest-asyncio==0.24.0 isort==5.13.2 flake8==7.1.1 pyright==1.1.378 black==24.8.0 asyncpg==0.29.0 async-timeout==4.0.3; python_version<"3.12" setuptools==74.0.0 wheel==0.44.0 twine==5.1.1 opentelemetry-api>=1.19 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index e69de29..cf0d9d7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -0,0 +1,4 @@ +[tool:pytest] +norecursedirs = .git .venv +python_files = tests.py test_*.py *_tests.py +asyncio_mode = auto