Skip to content

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
prasankh committed Jun 12, 2024
1 parent 4c291fa commit f4f43fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/operators/forecast/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,16 @@ def test_load_datasets(model, data_details):
if model == "automlx":
yaml_i["spec"]["model_kwargs"] = {"time_budget": 2}
if model == "auto-select":
yaml_i["spec"]["model_kwargs"] = {"model_list": ['arima', 'mlforecast']}
yaml_i["spec"]["model_kwargs"] = {"model_list": ['prophet', 'arima', 'mlforecast']}
if dataset_name == f'{DATASET_PREFIX}dataset4.csv':
pytest.skip("Skipping dataset4 with auto-select") # todo:// ODSC-58584

run(yaml_i, backend="operator.local", debug=False)
subprocess.run(f"ls -a {output_data_path}", shell=True)
if yaml_i["spec"]["generate_explanations"] and model not in [
"automlx",
"mlforecast",
"auto-select"
]:
verify_explanations(
tmpdirname=tmpdirname,
Expand Down

0 comments on commit f4f43fb

Please sign in to comment.