From 7031318cf598f8843f70f5e7f4a8e0b644ad7968 Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Fri, 31 Jan 2025 08:43:36 +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..aa0f40889 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 = "strict"