Files
Otkritiebot/pytest.ini
Verum 02afbd23ec
Some checks failed
CI / Lint (ruff + mypy) (push) Failing after 34s
CI / Run tests (push) Has been skipped
CI / Docker build test (push) Successful in 13s
123
2026-04-02 18:04:04 +07:00

37 lines
645 B
INI

[pytest]
minversion = 7.0
# Где искать тесты
testpaths =
tests
# Правила обнаружения тестов
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Опции запуска
addopts =
-ra
-vv
--strict-markers
--strict-config
--tb=short
--maxfail=1
--durations=10
# Логи во время тестов
log_cli = true
log_cli_level = INFO
# Маркеры
markers =
slow: slow tests
integration: integration tests
e2e: end-to-end tests
# Фильтрация предупреждений
filterwarnings =
ignore::DeprecationWarning