Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/system/large/ml/test_forecasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def test_arima_plus_model_fit_score(
result,
columns=expected_columns,
index=2 if id_col_name else 1,
col_exact=False,
)

# save, load to ensure configuration was kept
Expand Down
2 changes: 2 additions & 0 deletions tests/system/large/ml/test_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ def test_llm_gemini_score(llm_fine_tune_df_default_index, model_name):
"evaluation_status",
],
index=1,
col_exact=False,
)


Expand Down Expand Up @@ -226,6 +227,7 @@ def test_llm_gemini_pro_score_params(llm_fine_tune_df_default_index, model_name)
"label",
"evaluation_status",
],
col_exact=False,
)


Expand Down
4 changes: 2 additions & 2 deletions tests/system/small/ml/test_forecasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def test_arima_plus_score(
dtype="Float64",
)
pd.testing.assert_frame_equal(
result,
result[expected.columns],
expected,
rtol=0.1,
check_index_type=False,
Expand Down Expand Up @@ -594,7 +594,7 @@ def test_arima_plus_score_series(
dtype="Float64",
)
pd.testing.assert_frame_equal(
result,
result[expected.columns],
expected,
rtol=0.1,
check_index_type=False,
Expand Down
Loading