From e8dc8c16d752a98328bacf9c3b0554043bbd447b Mon Sep 17 00:00:00 2001 From: Tyler Date: Sat, 20 Jun 2026 15:24:48 -0600 Subject: [PATCH] build(deps): pytest-asyncio for SP5 stream tests --- backend/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 107dde3..a946363 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -20,6 +20,7 @@ dependencies = [ dev = [ "pytest>=8.0", "pytest-cov>=4.1", + "pytest-asyncio>=0.23,<1", "httpx>=0.27,<1", ] @@ -32,3 +33,4 @@ where = ["src"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-ra --strict-markers" +asyncio_mode = "auto"