(self, step, parameters)
| 451 | self._step_handlers = step_handlers |
| 452 | |
| 453 | def execute(self, step, parameters): |
| 454 | # We may eventually support jumping around to different step |
| 455 | # names, but for now, we just iterate through the steps in order. |
| 456 | for group in step.values(): |
| 457 | for step in group: |
| 458 | self._execute_step(step, parameters) |
| 459 | |
| 460 | def _execute_step(self, step, parameters): |
| 461 | if 'condition' in step: |
no test coverage detected