Skip to content

Commit 0433b8e

Browse files
committed
skip segmentation fault
1 parent c829ef7 commit 0433b8e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_cupy.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
lambda: Stream(non_blocking=True),
1313
lambda: Stream(null=True),
1414
lambda: Stream(ptds=True),
15-
lambda: 123, # dlpack stream
15+
pytest.param(
16+
lambda: 123,
17+
id="dlpack stream",
18+
marks=pytest.mark.skip(reason="segmentation fault reported (#326)")
19+
),
1620
],
1721
)
1822
def test_to_device_with_stream(make_stream):

0 commit comments

Comments
 (0)