19 lines
391 B
INI
19 lines
391 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_functions = test_*
|
|
asyncio_mode = auto
|
|
filterwarnings =
|
|
ignore::DeprecationWarning:botocore.auth
|
|
|
|
# Coverage configuration
|
|
addopts =
|
|
--cov=app
|
|
--cov-report=term-missing
|
|
|
|
# Test markers
|
|
markers =
|
|
slow: mark tests as slow running
|
|
integration: integration tests
|
|
unit: unit tests
|
|
db: tests requiring database |