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

Function teardown_command

sdk/python/feast/cli/cli.py:325–334  ·  view source on GitHub ↗

Tear down deployed feature store infrastructure

(ctx: click.Context)

Source from the content-addressed store, hash-verified

323@cli.command("teardown", cls=NoOptionDefaultFormat)
324@click.pass_context
325def 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")

Callers

nothing calls this directly

Calls 3

cli_check_repoFunction · 0.90
load_repo_configFunction · 0.90
teardownFunction · 0.90

Tested by

no test coverage detected