421b3ada3b
- 连字符扩展:multi-agent → multi agent 提升搜索召回率 - 中文同义词支持:添加中英文混合查询扩展 - Snippet 高亮预留:为 FTS5 snippet 功能预留接口 - YAML 解析增强:支持 HTML 实体解码 - 标签关联维护:自动维护 wiki_page_tags 关联表 - 缓存失效优化:支持智能前缀匹配 - 设计文档更新:汇总近期改动 (v1.3) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
36 lines
558 B
INI
36 lines
558 B
INI
[pytest]
|
|
# Pytest 配置文件
|
|
|
|
# 测试发现
|
|
testpaths = tests
|
|
|
|
# 输出选项
|
|
addopts =
|
|
-v
|
|
--strict-markers
|
|
--tb=short
|
|
--cov-report=term-missing
|
|
--cov-report=html
|
|
|
|
# asyncio 模式 - 自动处理异步 fixtures 和测试
|
|
asyncio_mode = auto
|
|
|
|
# 标记定义
|
|
markers =
|
|
unit: 单元测试
|
|
integration: 集成测试
|
|
e2e: 端到端测试
|
|
slow: 慢速测试
|
|
|
|
# 覆盖率配置
|
|
[coverage:run]
|
|
source = mcp_server
|
|
omit =
|
|
*/tests/*
|
|
*/__init__.py
|
|
|
|
[coverage:report]
|
|
precision = 2
|
|
show_missing = true
|
|
skip_covered = false
|