Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cleanup step for AWS integration test, ensure diable_prompt is passed through #1921

Merged
merged 22 commits into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/_nebari/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@
def deploy_configuration(
config: schema.Main,
stages: List[hookspecs.NebariStage],
dns_provider,
dns_auto_provision,
disable_prompt: bool = False,
disable_checks: bool = False,
skip_remote_state_provision: bool = False,
):
if config.prevent_deploy:
raise ValueError(
Expand Down Expand Up @@ -53,7 +50,7 @@ def deploy_configuration(
with contextlib.ExitStack() as stack:
for stage in stages:
s = stage(output_directory=pathlib.Path.cwd(), config=config)
stack.enter_context(s.deploy(stage_outputs))
stack.enter_context(s.deploy(stage_outputs, disable_prompt))

if not disable_checks:
s.check(stage_outputs)
Expand Down
Loading