Running the Python resolution benchmark fixtures locally generates tests/benchmarks/resolution/fixtures/python/__pycache__/, which isn't covered by .gitignore and shows up as untracked noise in git status after any local npm test run.
Found incidentally while working on an unrelated feature (remote embedding provider, issue #1713) — not caused by that change, just noticed the untracked directory in git status output.
Fix: add __pycache__/ (or a more targeted tests/benchmarks/resolution/fixtures/**/__pycache__/) to .gitignore.
Running the Python resolution benchmark fixtures locally generates
tests/benchmarks/resolution/fixtures/python/__pycache__/, which isn't covered by.gitignoreand shows up as untracked noise ingit statusafter any localnpm testrun.Found incidentally while working on an unrelated feature (remote embedding provider, issue #1713) — not caused by that change, just noticed the untracked directory in
git statusoutput.Fix: add
__pycache__/(or a more targetedtests/benchmarks/resolution/fixtures/**/__pycache__/) to.gitignore.