File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 15
15
import os
16
16
17
17
import pytest
18
- import tests .integ
19
- from sagemaker import AutoML , CandidateEstimator , AutoMLInput
20
-
21
18
from botocore .exceptions import ClientError
19
+
20
+ import tests .integ
21
+ from sagemaker import AutoML , AutoMLInput , CandidateEstimator
22
22
from sagemaker .utils import unique_name_from_base
23
- from tests .integ import DATA_DIR , AUTO_ML_DEFAULT_TIMEMOUT_MINUTES , auto_ml_utils
23
+ from tests .integ import AUTO_ML_DEFAULT_TIMEMOUT_MINUTES , DATA_DIR , auto_ml_utils
24
24
from tests .integ .timeout import timeout
25
25
26
26
ROLE = "SageMakerRole"
@@ -169,6 +169,7 @@ def test_auto_ml_describe_auto_ml_job(sagemaker_session):
169
169
}
170
170
},
171
171
"TargetAttributeName" : TARGET_ATTRIBUTE_NAME ,
172
+ "ContentType" : "text/csv;header=present" ,
172
173
}
173
174
]
174
175
expected_default_output_config = {
@@ -205,6 +206,7 @@ def test_auto_ml_attach(sagemaker_session):
205
206
}
206
207
},
207
208
"TargetAttributeName" : TARGET_ATTRIBUTE_NAME ,
209
+ "ContentType" : "text/csv;header=present" ,
208
210
}
209
211
]
210
212
expected_default_output_config = {
You can’t perform that action at this time.
0 commit comments