(stage, action: str = "dump")
| 285 | |
| 286 | @staticmethod |
| 287 | def _check_if_parametrized(stage, action: str = "dump") -> None: |
| 288 | if stage.raw_data.parametrized: |
| 289 | raise ParametrizedDumpError(f"cannot {action} a parametrized {stage}") |
| 290 | |
| 291 | def _dump_pipeline_file(self, stages): |
| 292 | stages = stages if isinstance(stages, list) else [stages] |
no test coverage detected