File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 44
44
]
45
45
46
46
47
- @fails_if_pypy # this segfaults with PyPy-6.0
48
47
# numpydoc 0.8.0's docscrape tool raises because of collections.abc under
49
48
# Python 3.7
50
49
@ignore_warnings (category = DeprecationWarning )
50
+ @fails_if_pypy # this segfaults with PyPy-6.0
51
51
def test_docstring_parameters ():
52
52
# Test module docstring formatting
53
53
Original file line number Diff line number Diff line change 2
2
from sklearn .utils ._show_versions import _get_sys_info
3
3
from sklearn .utils ._show_versions import _get_deps_info
4
4
from sklearn .utils ._show_versions import show_versions
5
+ from sklearn .utils .testing import fails_if_pypy
5
6
6
7
7
8
def test_get_sys_info ():
@@ -24,6 +25,7 @@ def test_get_deps_info():
24
25
assert 'pandas' in deps_info
25
26
26
27
28
+ @fails_if_pypy
27
29
def test_show_versions_with_blas (capsys ):
28
30
show_versions ()
29
31
out , err = capsys .readouterr ()
You can’t perform that action at this time.
0 commit comments