@@ -130,6 +130,7 @@ def test_deploy(name_from_base, prepare_container_def, production_variant, sagem
130
130
model_data_download_timeout = None ,
131
131
container_startup_health_check_timeout = None ,
132
132
routing_config = None ,
133
+ inference_ami_version = None ,
133
134
)
134
135
135
136
sagemaker_session .create_model .assert_called_with (
@@ -192,6 +193,7 @@ def test_deploy_accelerator_type(
192
193
model_data_download_timeout = None ,
193
194
container_startup_health_check_timeout = None ,
194
195
routing_config = None ,
196
+ inference_ami_version = None ,
195
197
)
196
198
197
199
sagemaker_session .endpoint_from_production_variants .assert_called_with (
@@ -519,6 +521,7 @@ def test_deploy_serverless_inference(production_variant, create_sagemaker_model,
519
521
model_data_download_timeout = None ,
520
522
container_startup_health_check_timeout = None ,
521
523
routing_config = None ,
524
+ inference_ami_version = None ,
522
525
)
523
526
524
527
sagemaker_session .endpoint_from_production_variants .assert_called_with (
@@ -956,6 +959,7 @@ def test_deploy_customized_volume_size_and_timeout(
956
959
model_data_download_timeout = model_data_download_timeout_sec ,
957
960
container_startup_health_check_timeout = startup_health_check_timeout_sec ,
958
961
routing_config = None ,
962
+ inference_ami_version = None ,
959
963
)
960
964
961
965
sagemaker_session .create_model .assert_called_with (
@@ -1006,6 +1010,7 @@ def test_deploy_with_resources(sagemaker_session, name_from_base, production_var
1006
1010
model_data_download_timeout = None ,
1007
1011
container_startup_health_check_timeout = None ,
1008
1012
routing_config = None ,
1013
+ inference_ami_version = None ,
1009
1014
)
1010
1015
sagemaker_session .endpoint_from_production_variants .assert_called_with (
1011
1016
name = name_from_base (MODEL_NAME ),
0 commit comments