MCPcopy
hub / github.com/feast-dev/feast / cli_check_repo

Function cli_check_repo

sdk/python/feast/repo_operations.py:559–566  ·  view source on GitHub ↗
(repo_path: Path, fs_yaml_file: Path)

Source from the content-addressed store, hash-verified

557
558
559def cli_check_repo(repo_path: Path, fs_yaml_file: Path):
560 sys.path.append(str(repo_path))
561 if not fs_yaml_file.exists():
562 print(
563 f"Can't find feature repo configuration file at {fs_yaml_file}. "
564 "Make sure you're running feast from an initialized feast repository."
565 )
566 sys.exit(1)
567
568
569def init_repo(repo_name: str, template: str, repo_path: Optional[str] = None):

Callers 8

deleteFunction · 0.90
configurationFunction · 0.90
plan_commandFunction · 0.90
apply_total_commandFunction · 0.90
teardown_commandFunction · 0.90
registry_dump_commandFunction · 0.90
import_commandFunction · 0.90
create_feature_storeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected