21 lines
562 B
INI
21 lines
562 B
INI
|
|
[tool:pytest]
|
||
|
|
testpaths = tests
|
||
|
|
python_files = test_*.py
|
||
|
|
python_classes = Test*
|
||
|
|
python_functions = test_*
|
||
|
|
pythonpath = src
|
||
|
|
addopts =
|
||
|
|
-v
|
||
|
|
--tb=short
|
||
|
|
--strict-markers
|
||
|
|
--asyncio-mode=auto
|
||
|
|
--disable-warnings
|
||
|
|
markers =
|
||
|
|
integration: marks tests as integration tests (deselect with '-m "not integration"')
|
||
|
|
unit: marks tests as unit tests
|
||
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
||
|
|
requires_api_key: marks tests that require API keys
|
||
|
|
filterwarnings =
|
||
|
|
ignore::DeprecationWarning
|
||
|
|
ignore::PendingDeprecationWarning
|