Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Arceo <franciscojavierarceo@users.noreply.github.com>
  • Loading branch information
franciscojavierarceo committed Jun 13, 2024
1 parent 7c94454 commit f34477f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/repo_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_repo_files(repo_root: Path) -> List[Path]:
# Read ignore paths from .feastignore and create a set of all files that match any of these paths
ignore_paths = read_feastignore(repo_root)
ignore_files = get_ignore_files(repo_root, ignore_paths)
ignore_paths += [".git", ".feastignore", ".venv", ".pytest_cache", "__pycache__"]
ignore_paths += [".git", ".feastignore", ".venv", ".pytest_cache", "__pycache__", ".ipynb_checkpoints"]

# List all Python files in the root directory (recursively)
repo_files = {
Expand Down

0 comments on commit f34477f

Please sign in to comment.