From 21c5191d791e1f7581664f5d1c3f110189e1b47b Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Thu, 30 Jan 2025 14:50:37 +0100 Subject: [PATCH] Add tool.pytest.init_options entry to pyproject.toml --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index cc0aa0c20..129f546c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -556,3 +556,10 @@ forced-separate = [ ] combine-as-imports = true split-on-trailing-comma = false + +[tool.pytest.ini_options] +testpaths = [ + "tests", +] +asyncio_default_fixture_loop_scope = "session" +asyncio_mode = "auto"