Files
ocean_project_manager/backend/pytest.ini
T
2026-01-26 08:04:53 +08:00

17 lines
311 B
INI

[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--strict-markers
--cov=src
--cov-report=term-missing
--cov-report=html
asyncio_mode = auto
markers =
unit: 单元测试
integration: 集成测试
slow: 慢速测试