Skip to content
Snippets Groups Projects

add a fake form to make confirmation work

Files
2
@@ -288,6 +288,12 @@ def _confirm_pp_results(state: State) -> FormGenerator:
@@ -288,6 +288,12 @@ def _confirm_pp_results(state: State) -> FormGenerator:
# FIXME: dirty hack that makes the skipping """work"""
# FIXME: dirty hack that makes the skipping """work"""
return {"pp_did_succeed": True}
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
successful_run = state["pp_run_results"]["return_code"] == 0
class ConfirmRunPage(FormPage):
class ConfirmRunPage(FormPage):
Loading