(repo_path: Path, fs_yaml_file: Path)
| 557 | |
| 558 | |
| 559 | def 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 | |
| 569 | def init_repo(repo_name: str, template: str, repo_path: Optional[str] = None): |
no outgoing calls
no test coverage detected