fix(test): add pytest-asyncio for async test support
All checks were successful
Test before pr merge / test-lint (pull_request) Successful in 7s
Test before pr merge / test (pull_request) Successful in 35s

Add pytest-asyncio==0.26.0 to core dev requirements and configure
asyncio_mode=auto in pyproject.toml to fix failing async tests in
service_test.py.
This commit is contained in:
clu
2026-04-13 19:47:48 +02:00
parent 27205022a5
commit ceb3957f0c
2 changed files with 4 additions and 2 deletions

View File

@@ -15,4 +15,5 @@ pythonpath = [
"src/query",
"src/translation"
]
testpaths = ["test"]
testpaths = ["test"]
asyncio_mode = "auto"

View File

@@ -1 +1,2 @@
black==25.1.0
black==25.1.0
pytest-asyncio==0.26.0