Skip to content

Commit f642304

Browse files
mdhabertylerjereddy
authored andcommitted
TST: linalg.svd: skip on 32-bit due to limited memory
1 parent df47908 commit f642304

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scipy/linalg/tests/test_decomp.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,6 +1215,7 @@ class TestSVD_GESVD(TestSVD_GESDD):
12151215
# Allocating an array of such a size leads to _ArrayMemoryError(s)
12161216
# since the maximum memory that can be in 32-bit (WASM) is 4GB
12171217
@pytest.mark.skipif(IS_WASM, reason="out of memory in WASM")
1218+
@pytest.mark.xfail_on_32bit("out of memory in 32-bit CI workflow")
12181219
@pytest.mark.fail_slow(10)
12191220
def test_svd_gesdd_nofegfault():
12201221
# svd(a) with {U,VT}.size > INT_MAX does not segfault

0 commit comments

Comments
 (0)