Skip to content

Fix .gitignore __pycache__ typo and reorganize reports#28

Merged
marcarl merged 1 commit intomainfrom
fix/gitignore-pycache-typo
Jan 5, 2026
Merged

Fix .gitignore __pycache__ typo and reorganize reports#28
marcarl merged 1 commit intomainfrom
fix/gitignore-pycache-typo

Conversation

@marcarl
Copy link
Copy Markdown
Collaborator

@marcarl marcarl commented Jan 5, 2026

Summary

  • Fix critical typo in .gitignore: ___pycache____pycache__/ (was using 3 underscores instead of 2)
  • Add .ruff_cache/ to ignored directories
  • Move reports/ directory into data/ for better organization
  • Remove obsolete claude-usage.md

Problem

The __pycache__ pattern had three underscores instead of two, which meant Python cache directories were not being ignored. This resulted in bytecode files (.pyc) being tracked in the repository across multiple directories:

  • ./temporal/__pycache__
  • ./test/__pycache__
  • ./util/__pycache__
  • ./exporters/__pycache__
  • And several others

Additionally, the Ruff linter cache directory (.ruff_cache/) was not being ignored.

Changes

  1. Fixed __pycache__ pattern (line 2 in .gitignore)
  2. Added .ruff_cache/ to test coverage section
  3. Reorganized reports - moved reports/ into data/reports/ for better structure
  4. Cleaned up - removed obsolete claude-usage.md

Test plan

  • Verified all actual __pycache__ directories use 2 underscores
  • Confirmed .ruff_cache/ exists and should be ignored
  • Verified git status shows proper ignore behavior

🤖 Generated with Claude Code

- Fix critical typo: ___pycache__ → __pycache__/ (was using 3 underscores)
- Add .ruff_cache/ to ignored directories
- Move reports/ directory into data/ for better organization
- Remove obsolete claude-usage.md

The __pycache__ typo caused Python cache directories to not be ignored,
resulting in bytecode files being tracked in the repository.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
@marcarl marcarl merged commit c83806d into main Jan 5, 2026
5 checks passed
@marcarl marcarl deleted the fix/gitignore-pycache-typo branch January 5, 2026 09:31
@marcarl marcarl restored the fix/gitignore-pycache-typo branch January 5, 2026 09:33
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.

1 participant