first commit

This commit is contained in:
rjb
2025-12-21 00:20:27 +08:00
commit 6fb3c6c23d
42 changed files with 2265 additions and 0 deletions

22
pytest.ini Normal file
View File

@@ -0,0 +1,22 @@
[pytest]
# pytest配置文件
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# 输出选项
addopts =
-v
--strict-markers
--tb=short
--cov=src
--cov-report=term-missing
--cov-report=html
# 标记
markers =
unit: 单元测试
integration: 集成测试
slow: 慢速测试