Skip to content

Commit a8c92e5

Browse files
committed
Return instead of skipping (so there are no skips in the test output)
1 parent fc90e1b commit a8c92e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_isdtype.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ def test_isdtype_additional_dtypes(library, dtype_):
106106
isdtype = xp.isdtype
107107

108108
if not hasattr(xp, dtype_):
109-
pytest.skip(f"{library} doesn't have dtype {dtype_}")
109+
return
110+
# pytest.skip(f"{library} doesn't have dtype {dtype_}")
110111

111112
dtype = getattr(xp, dtype_)
112113
for cat in dtype_categories:

0 commit comments

Comments
 (0)