(self, config, context)
| 134 | class EmptyStep(StepBase): |
| 135 | type_key = "" |
| 136 | def execute(self, config, context): |
| 137 | return StepResult() |
| 138 | |
| 139 | with pytest.raises(ValueError, match="empty type_key"): |
| 140 | _register_step(EmptyStep()) |
no test coverage detected