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

TEST: add sklearn check_estimator test for MapieRegressor #600

Merged
merged 1 commit into from
Jan 15, 2025
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 HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ History
* Documentation test: add a doc testing step (in MAKEFILE and CI)
* Increase max line length from 79 to 88 characters
* Bump wheel version
* Other minor evolutions

0.9.1 (2024-09-13)
------------------
Expand Down
6 changes: 6 additions & 0 deletions mapie/tests/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
)
from sklearn.pipeline import Pipeline, make_pipeline
from sklearn.preprocessing import OneHotEncoder
from sklearn.utils.estimator_checks import check_estimator
from sklearn.utils.validation import check_is_fitted
from typing_extensions import TypedDict

Expand Down Expand Up @@ -1039,3 +1040,8 @@ def test_deprecated_ensemble_regressor_fit_warning() -> None:
match=r".WARNING: EnsembleRegressor.fit is deprecated.*"
):
ens_reg.fit(X, y)


def test_mapie_regressor_sklearn_estim() -> None:
"""Test that MapieRegressor is an sklearn estimator"""
check_estimator(MapieRegressor())
Loading