Skip to content

Commit fa772de

Browse files
committed
Fix test skipping for cupy
1 parent 0bef982 commit fa772de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
import pytest
44

55
def import_(library):
6-
if library == 'cupy':
6+
if 'cupy' in library:
77
return pytest.importorskip(library)
88
return import_module(library)

0 commit comments

Comments
 (0)