8000 TST fix still broken test_fast_dot · scikit-learn/scikit-learn@311172e · GitHub
[go: up one dir, main page]

Skip to content

Commit 311172e

Browse files
committed
TST fix still broken test_fast_dot
On Travis, SciPy seems to raise AttributeError instead of ValueError.
1 parent 02d9726 commit 311172e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/utils/tests/test_extmath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def test_fast_dot():
312312
try:
313313
linalg.get_blas_funcs('gemm')
314314
has_blas = True
315-
except ValueError:
315+
except AttributeError, ValueError:
316316
has_blas = False
317317

318318
if has_blas:

0 commit comments

Comments
 (0)
0