Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Filtering out pytest_cache, __pycache__, and ipynb_checkpoints in all…
… subdirectories during feast apply

Signed-off-by: Saipuneet Munikuntla <saipuneet357@gmail.com>
  • Loading branch information
saipuneet357 committed Mar 26, 2026
commit 995e2db93bec8c2fd4bd4037017fc7ed2c4d970d
6 changes: 3 additions & 3 deletions sdk/python/feast/repo_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ def get_repo_files(repo_root: Path) -> List[Path]:
".git",
".feastignore",
".venv",
".pytest_cache",
"__pycache__",
".ipynb_checkpoints",
"**/*.ipynb",
Comment thread
devin-ai-integration[bot] marked this conversation as resolved.
Outdated
"**/*.ipynb_checkpoints",
"**/*.pytest_cache",
"**/*__pycache__",
]
ignore_files = get_ignore_files(repo_root, ignore_paths)

Expand Down