Skip to content
Closed
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
3 changes: 3 additions & 0 deletions sklearn/tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
from sklearn.linear_model.base import LinearClassifierMixin
from sklearn.utils.estimator_checks import (
_yield_all_checks,
_clear_temp_memory,
CROSS_DECOMPOSITION,
check_parameters_default_constructible,
check_class_weight_balanced_linear_classifier,
Expand Down Expand Up @@ -73,6 +74,8 @@ def test_non_meta_estimators():
yield check, name, Estimator
else:
yield check, name, Estimator
_clear_temp_memory(warn=False)


def test_configure():
# Smoke test the 'configure' step of setup, this tests all the
Expand Down
Loading