8000 TST don't test utils.fixes docstrings (#12576) · jnothman/scikit-learn@9db3f7c · GitHub
[go: up one dir, main page]

Skip to content

Commit 9db3f7c

Browse files
committed
TST don't test utils.fixes docstrings (scikit-learn#12576)
1 parent d1f26fe commit 9db3f7c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

sklearn/tests/test_docstring_parameters.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ def test_docstring_parameters():
6464

6565
incorrect = []
6666
for name in PUBLIC_MODULES:
67+
if name == 'sklearn.utils.fixes':
68+
# We cannot always control these docstrings
69+
continue
6770
with warnings.catch_warnings(record=True):
6871
module = importlib.import_module(name)
6972
classes = inspect.getmembers(module, inspect.isclass)

0 commit comments

Comments
 (0)
0