Skip to content

Commit 905f179

Browse files
committed
Skip Heisenbug cases for sparse vector format.
1 parent 011dde0 commit 905f179

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sparse/mlir_backend/tests/test_simple.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,8 @@ def test_coo_3d_format(dtype):
300300

301301
@parametrize_dtypes
302302
def test_sparse_vector_format(dtype):
303+
if sparse.asdtype(dtype) in {sparse.complex64, sparse.complex128}:
304+
pytest.xfail("Heisenbug")
303305
format = sparse.formats.Coo().with_ndim(1).with_dtype(dtype).build()
304306

305307
SHAPE = (10,)

0 commit comments

Comments
 (0)