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 6223f26 commit bead494Copy full SHA for bead494
tests/unit/sagemaker/modules/train/test_model_trainer.py
@@ -1073,13 +1073,13 @@ def test_safe_configs():
1073
1074
@patch("sagemaker.modules.train.model_trainer.TemporaryDirectory")
1075
def test_destructor_cleanup(mock_tmp_dir, modules_session):
1076
-
+
1077
with pytest.raises(ValidationError):
1078
model_trainer = ModelTrainer(
1079
training_image=DEFAULT_IMAGE,
1080
role=DEFAULT_ROLE,
1081
sagemaker_session=modules_session,
1082
- compute="test"
+ compute="test",
1083
)
1084
mock_tmp_dir.cleanup.assert_not_called()
1085
0 commit comments