11 lines
341 B
INI
11 lines
341 B
INI
[pytest]
|
|
# Ensure pytest-asyncio is in auto mode for async tests without explicit markers.
|
|
asyncio_mode = auto
|
|
|
|
# Run the backend test suite from the repository root.
|
|
testpaths = backend/tests
|
|
pythonpath = backend
|
|
|
|
# Keep coverage output consistent with backend/pyproject.toml settings.
|
|
addopts = --cov=backend/app --cov-report=term-missing
|