16 lines
450 B
INI
16 lines
450 B
INI
[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 |