Skip to content

Commit bb89690

Browse files
authored
Remove pytest.mark.skip, since slow mark is supported (#2140)
1 parent 8464d9b commit bb89690

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/third_party/cupy/sorting_tests/test_search.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def test_argmax_zero_size_axis1(self, xp, dtype):
8282
return a.argmax(axis=1)
8383

8484
@testing.slow
85-
@pytest.mark.skip("slow mark is not implemented")
8685
def test_argmax_int32_overflow(self):
8786
a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64)
8887
assert a.argmax().item() == 2**32
@@ -162,7 +161,6 @@ def test_argmin_zero_size_axis1(self, xp, dtype):
162161
return a.argmin(axis=1)
163162

164163
@testing.slow
165-
@pytest.mark.skip("slow mark is not implemented")
166164
def test_argmin_int32_overflow(self):
167165
a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64)
168166
cupy.negative(a, out=a)

0 commit comments

Comments
 (0)