Fix .gitignore __pycache__ typo and reorganize reports#28
Merged
Conversation
- 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
added a commit
that referenced
this pull request
Jan 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.gitignore:___pycache__→__pycache__/(was using 3 underscores instead of 2).ruff_cache/to ignored directoriesreports/directory intodata/for better organizationclaude-usage.mdProblem
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__Additionally, the Ruff linter cache directory (
.ruff_cache/) was not being ignored.Changes
__pycache__pattern (line 2 in.gitignore).ruff_cache/to test coverage sectionreports/intodata/reports/for better structureclaude-usage.mdTest plan
__pycache__directories use 2 underscores.ruff_cache/exists and should be ignoredgit statusshows proper ignore behavior🤖 Generated with Claude Code