Files
gaokao-volunteer-system/.gitignore
Hermes Agent 2be2f586cf
Some checks failed
CI / pytest (Python 3.10) (push) Has been cancelled
CI / pytest (Python 3.11) (push) Has been cancelled
CI / pytest (Python 3.12) (push) Has been cancelled
fix(test): P1-2/P1-7/P1-8 100-case E2E 脚本三项修复
P1-2 boundary smoke 假阳性:
- boundary 分支现在真正 POST /api/public/orders 验证是否被契约阻断
- 不再只做 review_start 就标 skipped

P1-7 dev-verify 覆写受控报告:
- 默认回归产物从 reports/ 改为 /tmp/
- dev-verify smoke 失败不再阻断核心门禁(pytest/ruff/mypy)
- .gitignore 加入 score_range_fullchain_100_* 防止误提交

P1-8 smoke 启动探针误连旧进程:
- 启动前 socket bind 检测端口是否已被占用
- 启动探针改为双条件: proc.poll() is None + /health 200
- 进程意外退出时立即 raise 而非继续等 health

附带: review_start_ok/token_review_start_ok 断言兼容新文案复核结果
2026-06-27 14:32:53 +08:00

84 lines
1000 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 临时文件
*.tmp
*.temp
*.bak
*.swp
*.swo
*~
.DS_Store
Thumbs.db
*.log
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.eggs/
.pytest_cache/
.coverage
.coverage.*
coverage.xml
htmlcov/
.tox/
*.egg
.mypy_cache/
.ruff_cache/
venv/
.venv/
env/
# 编辑器
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# 浏览器生成
browser_screenshot_*.png
# 用户数据(不应提交)
data/private/
*.user
# 大文件
*.pdf
!docs/**/*.pdf
!data/examples/*.pdf
*.zip
*.tar.gz
*.rar
# 系统
.fuse_hidden*
.Trash-*
# 本地配置
.env
.env.local
*.local
config.local.*
# 本地工作树 / 临时验证产物
.worktrees/
.hermes_test_tmp.txt
admin/_tmp_test.txt
# 运行时 SQLite 数据库
/data/*.db
/data/*.db-*
/data/orders/*.db
/data/orders/*.db-*
# 本地工具元数据 / 运行产物
.serena/
/data/alerts/
/data/portal_uploads/
/=0.0.20,
# P1-7: 100-case 回归产物写入 /tmpreports/ 下不应再有动态覆写产物
reports/score_range_fullchain_100_*