File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -135,13 +135,16 @@ def test_load_datasets(model, data_details):
135135 if model == "automlx" :
136136 yaml_i ["spec" ]["model_kwargs" ] = {"time_budget" : 2 }
137137 if model == "auto-select" :
138- yaml_i ["spec" ]["model_kwargs" ] = {"model_list" : ['arima' , 'mlforecast' ]}
138+ yaml_i ["spec" ]["model_kwargs" ] = {"model_list" : ['prophet' , 'arima' , 'mlforecast' ]}
139+ if dataset_name == f'{ DATASET_PREFIX } dataset4.csv' :
140+ pytest .skip ("Skipping dataset4 with auto-select" ) # todo:// ODSC-58584
139141
140142 run (yaml_i , backend = "operator.local" , debug = False )
141143 subprocess .run (f"ls -a { output_data_path } " , shell = True )
142144 if yaml_i ["spec" ]["generate_explanations" ] and model not in [
143145 "automlx" ,
144146 "mlforecast" ,
147+ "auto-select"
145148 ]:
146149 verify_explanations (
147150 tmpdirname = tmpdirname ,
You can’t perform that action at this time.
0 commit comments