Tear down deployed feature store infrastructure
(ctx: click.Context)
| 323 | @cli.command("teardown", cls=NoOptionDefaultFormat) |
| 324 | @click.pass_context |
| 325 | def teardown_command(ctx: click.Context): |
| 326 | """ |
| 327 | Tear down deployed feature store infrastructure |
| 328 | """ |
| 329 | repo = ctx.obj["CHDIR"] |
| 330 | fs_yaml_file = ctx.obj["FS_YAML_FILE"] |
| 331 | cli_check_repo(repo, fs_yaml_file) |
| 332 | repo_config = load_repo_config(repo, fs_yaml_file) |
| 333 | |
| 334 | teardown(repo_config, repo) |
| 335 | |
| 336 | |
| 337 | @cli.command("registry-dump") |
nothing calls this directly
no test coverage detected