From 584d1a5fc999d9de5c50d82cb20d8685c4cef6d0 Mon Sep 17 00:00:00 2001 From: gabrielaugz Date: Fri, 21 Mar 2025 11:11:32 -0300 Subject: [PATCH] feat: ignore ipynb files during apply --- sdk/python/feast/repo_operations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/python/feast/repo_operations.py b/sdk/python/feast/repo_operations.py index a3bf52fb10e..19caf69e7c4 100644 --- a/sdk/python/feast/repo_operations.py +++ b/sdk/python/feast/repo_operations.py @@ -104,6 +104,7 @@ def get_repo_files(repo_root: Path) -> List[Path]: p.resolve() for p in repo_root.glob("**/*.py") if p.is_file() and "__init__.py" != p.name + and not p.name.endswith(".ipynb") # Ignore Jupyter Notebook files during feast apply } # Ignore all files that match any of the ignore paths in .feastignore repo_files -= ignore_files