Skip to content

Commit

Permalink
Fixed cpu isntance type for the estimator register test (#4811)
Browse files Browse the repository at this point in the history
  • Loading branch information
selvask-aws authored Jul 29, 2024
1 parent fa68f1f commit e09693c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integ/test_byo_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def test_byo_estimator(sagemaker_session, region, cpu_instance_type, training_se


@pytest.mark.release
def test_estimator_register_publish_training_details(sagemaker_session, region):
def test_estimator_register_publish_training_details(sagemaker_session, region, cpu_instance_type):

bucket = sagemaker_session.default_bucket()
prefix = "model-card-sample-notebook"
Expand Down Expand Up @@ -150,7 +150,7 @@ def test_estimator_register_publish_training_details(sagemaker_session, region):
container,
role="SageMakerRole",
instance_count=1,
instance_type="ml.m4.xlarge",
instance_type=cpu_instance_type,
output_path=output_location,
sagemaker_session=sagemaker_session,
)
Expand Down

0 comments on commit e09693c

Please sign in to comment.