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
Removing broad glob pattern and only keeping exact match of directory…
… name inside subdirectories

Signed-off-by: Saipuneet Munikuntla <saipuneet357@gmail.com>
  • Loading branch information
saipuneet357 committed Mar 26, 2026
commit 452ed86c2839ff8a80f67f256e69d4f86e8e9c47
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,9 +92,9 @@ def get_repo_files(repo_root: Path) -> List[Path]:
".git",
".feastignore",
".venv",
"**/*.ipynb_checkpoints",
"**/*.pytest_cache",
"**/*__pycache__",
"**/.ipynb_checkpoints",
"**/.pytest_cache",
"**/__pycache__",
]
ignore_files = get_ignore_files(repo_root, ignore_paths)

Expand Down