Skip to content
Snippets Groups Projects

add a fake form to make confirmation work

1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
@@ -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):
Loading