From 4b65ab61d47c7b537aa0807545c1b67e7e7abb0e Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Thu, 15 Jul 2021 18:53:18 -0600 Subject: [PATCH] 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. --- numpy/linalg/tests/test_linalg.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/numpy/linalg/tests/test_linalg.py b/numpy/linalg/tests/test_linalg.py index 4c54c0b534f6..dd059fb63199 100644 --- a/numpy/linalg/tests/test_linalg.py +++ b/numpy/linalg/tests/test_linalg.py @@ -2113,10 +2113,11 @@ def test_unsupported_commontype(): linalg.cholesky(arr) -@pytest.mark.slow -@pytest.mark.xfail(not HAS_LAPACK64, run=False, - reason="Numpy not compiled with 64-bit BLAS/LAPACK") -@requires_memory(free_bytes=16e9) +#@pytest.mark.slow +#@pytest.mark.xfail(not HAS_LAPACK64, run=False, +# reason="Numpy not compiled with 64-bit BLAS/LAPACK") +#@requires_memory(free_bytes=16e9) +@pytest.mark.skip(reason="Bad memory reports lead to OOM in ci testing") def test_blas64_dot(): n = 2**32 a = np.zeros([1, n], dtype=np.float32)