From 4df01d4f9e875e53b2f6515d0812898bdb580c2f Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Thu, 31 Oct 2024 13:28:48 +0100 Subject: [PATCH] Remove pytest.mark.skip, since slow mark is supported --- tests/third_party/cupy/sorting_tests/test_search.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/third_party/cupy/sorting_tests/test_search.py b/tests/third_party/cupy/sorting_tests/test_search.py index 2e3288c6bf01..9b34ba14312e 100644 --- a/tests/third_party/cupy/sorting_tests/test_search.py +++ b/tests/third_party/cupy/sorting_tests/test_search.py @@ -82,7 +82,6 @@ def test_argmax_zero_size_axis1(self, xp, dtype): return a.argmax(axis=1) @testing.slow - @pytest.mark.skip("slow mark is not implemented") def test_argmax_int32_overflow(self): a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64) assert a.argmax().item() == 2**32 @@ -162,7 +161,6 @@ def test_argmin_zero_size_axis1(self, xp, dtype): return a.argmin(axis=1) @testing.slow - @pytest.mark.skip("slow mark is not implemented") def test_argmin_int32_overflow(self): a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64) cupy.negative(a, out=a)