完成错误测试用例

This commit is contained in:
Your Name
2026-01-31 11:02:59 +08:00
parent 588e3bb478
commit 11cef531bd
15 changed files with 909 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
# === Python ===
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# 虚拟环境
.venv/
venv/
env/
ENV/
# 测试与覆盖率
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
# === IDE / 编辑器 ===
.cursor/
.idea/
.vscode/
*.swp
*.swo
*~
# === 系统 ===
.DS_Store
Thumbs.db
# === 环境与密钥 ===
.env
.env.local
.env.*.local
*.local
# === 前端(若 ui 用 npm===
node_modules/
# === 日志与临时 ===
*.log
*.tmp
*.temp
.cache/
# === 本地/开发数据库(按需保留)===
*.db
*.sqlite
*.sqlite3