Files
service_manager/backend/pytest.ini

24 lines
618 B
INI

[pytest]
testpaths = tests tests/unit tests/integration
python_files = test_*.py
python_functions = test_*
python_classes = Test*
asyncio_mode = auto
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
--color=yes
--durations=10
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
auth: marks tests related to authentication
db: marks tests that require database
env =
TESTING=true
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning