Skip to content

Commit 343f056

Browse files
asmeurerclaude
andcommitted
Fix pytest-asyncio configuration to resolve CI test failures
Added missing asyncio_default_fixture_loop_scope setting in pyproject.toml to properly configure pytest-asyncio for async test functions. This resolves the "async def functions are not natively supported" errors on CI. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 51d4050 commit 343f056

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[tool.pytest.ini_options]
2+
asyncio_mode = "auto"
3+
asyncio_default_fixture_loop_scope = "function"

0 commit comments

Comments
 (0)