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

Skip to content

Commit ebd657e

Browse files
committed
TST don't test utils.fixes docstrings
Partial fix for scikit-learn#12548. If code coverage does not drop, then this indicates the code is working.
1 parent eb36c28 commit ebd657e

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