diff --git a/gso/services/provisioning_proxy.py b/gso/services/provisioning_proxy.py index f3e18eb8503b15fe8e7e1bc561548811d0bd8f4c..d3be739fd9e999e65973695848f69d515c84aad3 100644 --- a/gso/services/provisioning_proxy.py +++ b/gso/services/provisioning_proxy.py @@ -288,6 +288,12 @@ def _confirm_pp_results(state: State) -> FormGenerator: # FIXME: dirty hack that makes the skipping """work""" return {"pp_did_succeed": True} + class ContinueForm(FormPage): + class Config: + title = "Continue to see the result?" + + yield ContinueForm + successful_run = state["pp_run_results"]["return_code"] == 0 class ConfirmRunPage(FormPage):