gitignore: ignore Python test artifacts (__pycache__, *.pyc, .pytest_cache)
All checks were successful
ci/woodpecker/push/default Pipeline was successful
All checks were successful
ci/woodpecker/push/default Pipeline was successful
Introduced the first pytest file in the tree (stacks/k8s-version-upgrade/scripts/test_compat_gate.py); running it leaves an untracked __pycache__/ dir. Ignore the standard Python build artifacts so test runs don't show up as working-tree noise or get committed by accident. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
b58fe8cb1a
commit
44cac6f4e2
1 changed files with 6 additions and 0 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -110,3 +110,9 @@ terraform.tfstate.backup
|
|||
# Timestamped terraform state backups (terraform.tfstate.<ts>.backup) — plaintext Tier-0
|
||||
# secrets; created by terraform state ops. The patterns above miss the timestamped form.
|
||||
terraform.tfstate.*.backup
|
||||
|
||||
# Python test artifacts (pytest bytecode cache) — e.g. from
|
||||
# stacks/k8s-version-upgrade/scripts/test_compat_gate.py
|
||||
__pycache__/
|
||||
*.pyc
|
||||
.pytest_cache/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue