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 372f59e commit 2943786Copy full SHA for 2943786
sklearn/__init__.py
@@ -47,9 +47,13 @@ def test(*args, **kwargs):
47
for more information.
48
49
This function, `sklearn.test()` does not do anything. It does not run
50
-the tests and will be deprecated in release 0.16.
+the tests and will be removed in release 0.16.
51
""", stacklevel=2)
52
53
+ # The following line is useful so that nosetests doesn't consider
54
+ # "test" as a test function
55
+ test.__test__ = False
56
+
57
__all__ = ['cross_validation', 'cluster', 'covariance',
58
'datasets', 'decomposition', 'feature_extraction',
59
'feature_selection', 'semi_supervised',
0 commit comments