feat: Stop tracked Python bytecode from dirtying autonomous worktree #45

Merged
rockachopa merged 1 commits from timmy/44-stop-tracked-python-bytecode-from-dirtying-auton into main 2026-08-05 15:39:42 +00:00
9 changed files with 18 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,18 @@
import subprocess
def test_python_bytecode_is_not_tracked():
tracked = subprocess.run(
["git", "ls-files"],
check=True,
capture_output=True,
text=True,
).stdout.splitlines()
bytecode = [
path
for path in tracked
if "__pycache__" in path.split("/") or path.endswith((".pyc", ".pyo"))
]
assert bytecode == []