Skip to content

Commit 5fd0761

Browse files
adding test dependency back in and fixing typo in sagemaker doc string
1 parent c787379 commit 5fd0761

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ dev = [
250250
"darglint",
251251
"pytest-randomly",
252252
"pytest-mock",
253-
#"pytest-clarity",
253+
"pytest-clarity",
254254
"pytest-instafail",
255255
"pytest-rerunfailures",
256256
"pytest-split",

src/zenml/integrations/aws/step_operators/sagemaker_step_operator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ def _validate_remote_components(stack: "Stack") -> Tuple[bool, str]:
121121

122122
if container_registry.config.is_local:
123123
return False, (
124-
"The Batch step operator runs code remotely and "
124+
"The SageMaker step operator runs code remotely and "
125125
"needs to push/pull Docker images, but the "
126126
f"container registry `{container_registry.name}` of the "
127127
"active stack is local. Please ensure that your stack "
128128
"contains a remote container registry when using the "
129-
"Batch step operator."
129+
"SageMaker step operator."
130130
)
131131

132132
return True, ""

0 commit comments

Comments
 (0)