Spaces:
Sleeping
Sleeping
File size: 463 Bytes
aef804e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [pytest]
testpaths = .
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
-p no:warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
markers =
asyncio: Async test cases
unit: Unit tests
integration: Integration tests
e2e: End-to-end tests
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
|