Files
bakery-ia/services/data/tests/pytest.ini

16 lines
450 B
INI
Raw Normal View History

2025-07-24 08:43:54 +02:00
[tool:pytest]
# pytest.ini - Configuration for async testing
asyncio_mode = auto
addopts = -v --tb=short --capture=no
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
markers =
asyncio: mark test as async
slow: mark test as slow
integration: mark test as integration test
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::PydanticDeprecatedSince20