From 235a89653fb66c8f86f66af3671764d0d89a95a8 Mon Sep 17 00:00:00 2001 From: shokollm <270575765+shokollm@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:15:27 +0000 Subject: [PATCH] test: add pytest.ini for easier test running - Set testpaths = tests - Set pythonpath = . (no need for PYTHONPATH=. prefix) - Set asyncio_default_fixture_loop_scope = function --- pytest.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..7745aa8 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,4 @@ +[pytest] +testpaths = tests +pythonpath = . +asyncio_default_fixture_loop_scope = function