Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add catboost to the third-party integration tests #17267

Merged
merged 10 commits into from
Nov 13, 2024
Prev Previous commit
Next Next commit
pass a tuple again
  • Loading branch information
Matt711 committed Nov 8, 2024
commit 1d0fb74252ff0b8bc5735488ae74057c6ec6c1c0
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_catboost_with_categorical_features():
pd.DataFrame(rng.standard_normal((100, 5))),
pd.Series(rng.standard_normal(100)),
),
(rng.standard_normal(100, 5), rng.standard_normal(100)),
(rng.standard_normal((100, 5)), rng.standard_normal(100)),
],
)
def test_catboost_train_test_split(X, y):
Expand Down
Loading