Skip to content

Commit 4b65ab6

Browse files
committed
MAINT: Disable test_blas64_dot.
This test is failing due to system oom during amd64 wheel tests with ILP64 OpenBLAS. Should not be run on account of memory restrictions, but evidently those are not reliably reported to the docker container running the tests.
1 parent a4e931f commit 4b65ab6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

numpy/linalg/tests/test_linalg.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2113,10 +2113,11 @@ def test_unsupported_commontype():
21132113
linalg.cholesky(arr)
21142114

21152115

2116-
@pytest.mark.slow
2117-
@pytest.mark.xfail(not HAS_LAPACK64, run=False,
2118-
reason="Numpy not compiled with 64-bit BLAS/LAPACK")
2119-
@requires_memory(free_bytes=16e9)
2116+
#@pytest.mark.slow
2117+
#@pytest.mark.xfail(not HAS_LAPACK64, run=False,
2118+
# reason="Numpy not compiled with 64-bit BLAS/LAPACK")
2119+
#@requires_memory(free_bytes=16e9)
2120+
@pytest.mark.skip(reason="Bad memory reports lead to OOM in ci testing")
21202121
def test_blas64_dot():
21212122
n = 2**32
21222123
a = np.zeros([1, n], dtype=np.float32)

0 commit comments

Comments
 (0)