Skip to content

Commit 2e3b681

Browse files
committed
configure tests
1 parent 734af5b commit 2e3b681

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/operators/forecast/test_datasets.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"prophet",
3333
"neuralprophet",
3434
"autots",
35-
"mlforecast",
35+
"lgbforecast",
3636
"auto-select",
3737
]
3838

@@ -135,15 +135,15 @@ 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": ['prophet', 'arima', 'mlforecast']}
138+
yaml_i["spec"]["model_kwargs"] = {"model_list": ['prophet', 'arima', 'lgbforecast']}
139139
if dataset_name == f'{DATASET_PREFIX}dataset4.csv':
140140
pytest.skip("Skipping dataset4 with auto-select") # todo:// ODSC-58584
141141

142142
run(yaml_i, backend="operator.local", debug=False)
143143
subprocess.run(f"ls -a {output_data_path}", shell=True)
144144
if yaml_i["spec"]["generate_explanations"] and model not in [
145145
"automlx",
146-
"mlforecast",
146+
"lgbforecast",
147147
"auto-select"
148148
]:
149149
verify_explanations(

tests/operators/forecast/test_errors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
"prophet",
142142
"neuralprophet",
143143
"autots",
144-
"mlforecast",
144+
"lgbforecast",
145145
# "auto",
146146
]
147147

@@ -687,7 +687,7 @@ def test_arima_automlx_errors(operator_setup, model):
687687
in error_content["13"]["error"]
688688
), "Error message mismatch"
689689

690-
if model not in ["autots", "automlx", "mlforecast"]:
690+
if model not in ["autots", "automlx", "lgbforecast"]:
691691
global_fn = f"{tmpdirname}/results/global_explanation.csv"
692692
assert os.path.exists(
693693
global_fn

0 commit comments

Comments
 (0)