(repo_config: RepoConfig, repo_path: Optional[str])
| 537 | |
| 538 | |
| 539 | def teardown(repo_config: RepoConfig, repo_path: Optional[str]): |
| 540 | # Cannot pass in both repo_path and repo_config to FeatureStore. |
| 541 | feature_store = FeatureStore(repo_path=repo_path, config=repo_config) |
| 542 | feature_store.teardown() |
| 543 | |
| 544 | |
| 545 | def registry_dump(repo_config: RepoConfig, repo_path: Path) -> str: |
no test coverage detected