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.
19 lines
318 B
TOML
19 lines
318 B
TOML
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = [
|
|
"src/api",
|
|
"src/application",
|
|
"src/auth",
|
|
"src/cli",
|
|
"src/core",
|
|
"src/database",
|
|
"src/dependency",
|
|
"src/graphql",
|
|
"src/mail",
|
|
"src/query",
|
|
"src/translation"
|
|
]
|
|
testpaths = ["test"]
|
|
asyncio_mode = "auto" |