forked from HSE_team/BetterCallPraskovia
24 lines
449 B
INI
24 lines
449 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
asyncio_mode = auto
|
|
addopts =
|
|
-v
|
|
--strict-markers
|
|
--tb=short
|
|
--cov=backend/src
|
|
--cov=tg_bot
|
|
--cov-report=term-missing
|
|
--cov-report=xml
|
|
--cov-fail-under=65
|
|
--ignore=venv
|
|
--ignore=.venv
|
|
markers =
|
|
unit: Unit tests
|
|
integration: Integration tests
|
|
metrics: Metrics tests
|
|
slow: Slow running tests
|
|
|