@@ -65,6 +65,7 @@ def test_mnist(sagemaker_session, instance_type):
65
65
sagemaker_session = sagemaker_session ,
66
66
script_mode = True ,
67
67
framework_version = TensorFlow .LATEST_VERSION ,
68
+ py_version = tests .integ .PYTHON_VERSION ,
68
69
metric_definitions = [{"Name" : "train:global_steps" , "Regex" : r"global_step\/sec:\s(.*)" }],
69
70
)
70
71
inputs = estimator .sagemaker_session .upload_data (
@@ -98,6 +99,7 @@ def test_server_side_encryption(sagemaker_session):
98
99
sagemaker_session = sagemaker_session ,
99
100
script_mode = True ,
100
101
framework_version = TensorFlow .LATEST_VERSION ,
102
+ py_version = tests .integ .PYTHON_VERSION ,
101
103
code_location = output_path ,
102
104
output_path = output_path ,
103
105
model_dir = "/opt/ml/model" ,
@@ -144,6 +146,7 @@ def test_mnist_async(sagemaker_session):
144
146
role = ROLE ,
145
147
train_instance_count = 1 ,
146
148
train_instance_type = "ml.c5.4xlarge" ,
149
+ py_version = tests .integ .PYTHON_VERSION ,
147
150
sagemaker_session = sagemaker_session ,
148
151
script_mode = True ,
149
152
framework_version = TensorFlow .LATEST_VERSION ,
@@ -182,6 +185,7 @@ def test_deploy_with_input_handlers(sagemaker_session, instance_type):
182
185
role = ROLE ,
183
186
train_instance_count = 1 ,
184
187
train_instance_type = instance_type ,
188
+ py_version = tests .integ .PYTHON_VERSION ,
185
189
sagemaker_session = sagemaker_session ,
186
190
script_mode = True ,
187
191
framework_version = TensorFlow .LATEST_VERSION ,
0 commit comments