mirror of
https://github.com/taylanbakircioglu/haproxy-openmanager.git
synced 2026-09-11 21:38:55 +00:00
19 lines
409 B
INI
19 lines
409 B
INI
[tool:pytest]
|
|
testpaths = backend/tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts =
|
|
-v
|
|
--tb=short
|
|
--strict-markers
|
|
--disable-warnings
|
|
--cov=backend
|
|
--cov-report=term-missing
|
|
--cov-report=html
|
|
--cov-fail-under=70
|
|
markers =
|
|
asyncio: marks tests as async
|
|
slow: marks tests as slow
|
|
integration: marks tests as integration tests
|