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 89fd51c commit 23680c9Copy full SHA for 23680c9
numpy/linalg/tests/test_linalg.py
@@ -4,6 +4,7 @@
4
import os
5
import sys
6
import itertools
7
+import threading
8
import traceback
9
import textwrap
10
import subprocess
@@ -1943,7 +1944,9 @@ def test_generalized_raise_multiloop():
1943
1944
1945
assert_raises(np.linalg.LinAlgError, np.linalg.inv, x)
1946
-
1947
+@pytest.mark.skipif(
1948
+ threading.active_count() > 1,
1949
+ reason="skipping test that uses fork because there are multiple threads")
1950
def test_xerbla_override():
1951
# Check that our xerbla has been successfully linked in. If it is not,
1952
# the default xerbla routine is called, which prints a message to stdout
0 commit comments