Fix .gitignore swallowing the pipeline build package

The unanchored 'build/' pattern matched src/apworld_tester/pipeline/build/,
so the package was never committed and a fresh clone failed at import with
ModuleNotFoundError. Anchor build/ and dist/ to the repo root and add the
missing module files. Also ignore .venv/.
This commit is contained in:
Skilly
2026-09-06 15:53:18 +02:00
parent c0fbbf3578
commit 14f2309688
4 changed files with 251 additions and 2 deletions

7
.gitignore vendored
View File

@@ -21,6 +21,9 @@ failed_apworlds.txt
CLAUDE.md
# Build output.
build/
dist/
/build/
/dist/
*.egg-info/
# Virtual environment.
.venv/