We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeeff39 commit aa6552eCopy full SHA for aa6552e
src/zenml/pipelines/pipeline_definition.py
@@ -289,7 +289,12 @@ def resolve(self) -> "Source":
289
Returns:
290
The pipeline source.
291
"""
292
- return source_utils.resolve(self.entrypoint, skip_validation=True)
+ # We need to validate that the source is loadable for dynamic pipelines,
293
+ # as the orchestration environment will need to load the source.
294
+ skip_validation = not self.is_dynamic
295
+ return source_utils.resolve(
296
+ self.entrypoint, skip_validation=skip_validation
297
+ )
298
299
@property
300
def source_object(self) -> Any:
0 commit comments