(self, step_definition, parameters)
| 634 | NAME = 'load-data' |
| 635 | |
| 636 | def run_step(self, step_definition, parameters): |
| 637 | loaded_value = LoadDataStep().run_step(step_definition, parameters) |
| 638 | parameters[step_definition['output_var']] = loaded_value |
| 639 | |
| 640 | |
| 641 | class DumpDataExecutorStep(ExecutorStep): |
nothing calls this directly
no test coverage detected