summaryrefslogtreecommitdiff
path: root/vmdb/step_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'vmdb/step_list.py')
-rw-r--r--vmdb/step_list.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/vmdb/step_list.py b/vmdb/step_list.py
index 1f29072..b8f55f4 100644
--- a/vmdb/step_list.py
+++ b/vmdb/step_list.py
@@ -27,6 +27,9 @@ class StepRunnerInterface(object): # pragma: no cover
def run(self, step_spec, settings, state):
raise NotImplementedError()
+ def run_even_if_skipped(self, step_spec, settings, state):
+ pass
+
def teardown(self, step_spec, settings, state):
# Default implementation does nop, so that sub-classes don't
# need to have a nop teardown.