8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 311172e commit 286d375Copy full SHA for 286d375
sklearn/tests/test_common.py
@@ -58,6 +58,10 @@ def test_all_estimators():
58
estimators = all_estimators(include_meta_estimators=True)
59
classifier = LDA()
60
61
+ # Meta sanity-check to make sure that the estimator introspection runs
62
+ # properly
63
+ assert_greater(len(estimators), 0)
64
+
65
for name, Estimator in estimators:
66
# some can just not be sensibly default constructed
67
if name in dont_test:
0 commit comments