Piston-Windy and AirBased-Windy tests now export reports via VerifyAndExportReport. ReportOutputDir path depth corrected (5->6 levels to repo root). gitignore: reports/ already excluded.
64 lines
738 B
Plaintext
64 lines
738 B
Plaintext
# === 操作系统生成文件 ===
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# === IDE & 编辑器 ===
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
|
||
# === .NET 构建产物 ===
|
||
bin/
|
||
obj/
|
||
*.user
|
||
*.suo
|
||
*.DotSettings.user
|
||
|
||
# === 依赖 ===
|
||
node_modules/
|
||
vendor/
|
||
__pycache__/
|
||
*.pyc
|
||
.venv/
|
||
venv/
|
||
.env
|
||
|
||
# === 日志 ===
|
||
*.log
|
||
logs/
|
||
|
||
# === 临时文件 ===
|
||
*.tmp
|
||
*.temp
|
||
tmp/
|
||
|
||
# === 测试 ===
|
||
coverage/
|
||
.nyc_output/
|
||
*.coverage
|
||
TestResults/
|
||
|
||
# === 环境变量(敏感信息) ===
|
||
.env.local
|
||
.env.production
|
||
|
||
# === 缓存 ===
|
||
.cache/
|
||
.pytest_cache/
|
||
|
||
# === 生成报告(不提交) ===
|
||
test/reports/
|
||
coverage_report/
|
||
TestResults/
|
||
|
||
# === Unity(不提交) ===
|
||
src/Unity/Library/
|
||
src/Unity/Temp/
|
||
src/Unity/obj/
|
||
src/Unity/Logs/
|
||
src/Unity/UserSettings/
|
||
unity_plugins/
|
||
nul
|
||
reports/
|