From e4eac975c3b41f46d4991041324546de7b087db4 Mon Sep 17 00:00:00 2001 From: Matt Carroll Date: Tue, 7 Apr 2026 13:50:13 -0700 Subject: [PATCH] fix(config): remove unsupported pytest-asyncio config key asyncio_default_fixture_loop_scope is not recognized by the installed pytest-asyncio version. The conftest.py already handles session-scoped async loop via explicit marker application, making this config unused. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 936914d..c84c8bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -133,7 +133,6 @@ testpaths = ["tests"] addopts = "--tb=short -n auto" xfail_strict = true asyncio_mode = "auto" -asyncio_default_fixture_loop_scope = "session" filterwarnings = [ "error" ]