Skip to content

chore: stop tracking compiled Python bytecode cache#53

Open
dmchaledev wants to merge 1 commit into
mainfrom
claude/blissful-pascal-x7hzlb
Open

chore: stop tracking compiled Python bytecode cache#53
dmchaledev wants to merge 1 commit into
mainfrom
claude/blissful-pascal-x7hzlb

Conversation

@dmchaledev

Copy link
Copy Markdown
Contributor

Summary

  • .github/scripts/__pycache__/wrapper_drift_check.cpython-311.pyc was accidentally committed alongside the CI helper script added in ci+docs(wrappers): detect and fix variable metadata drift (closes #18) #40.
  • .gitignore had no Python section, so any local python3 .github/scripts/wrapper_drift_check.py run regenerates a __pycache__/ dir that shows up as untracked/dirty in git status, and the checked-in .pyc is machine/interpreter-specific dead weight in the repo.
  • This PR untracks the .pyc file and adds __pycache__/ and *.pyc to .gitignore.

Scope

Doc/CI-hygiene only — no .tf files touched, no module behavior changes, zero blast radius for existing deployments.

Test plan

  • git status clean after removal; file no longer tracked
  • .gitignore now ignores __pycache__/ and *.pyc for future runs of .github/scripts/wrapper_drift_check.py
  • N/A terraform validate / tflint / checkov / trivy — no Terraform files changed

Generated by Claude Code

wrapper_drift_check.cpython-311.pyc was committed alongside the CI
helper script in #40. Untrack it and ignore __pycache__/*.pyc so
future python3 runs of .github/scripts/wrapper_drift_check.py don't
regenerate stray cache files into git status.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants