diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py index 9715f7924256..20a01d06bb10 100644 --- a/numpy/core/tests/test_umath.py +++ b/numpy/core/tests/test_umath.py @@ -1765,8 +1765,6 @@ def test_expm1(self): np.log, np.log2, np.log10, np.reciprocal, np.arccosh ] - @pytest.mark.skipif(sys.platform == "win32" and sys.maxsize < 2**31 + 1, - reason='failures on 32-bit Python, see FIXME below') @pytest.mark.parametrize("ufunc", UFUNCS_UNARY_FP) @pytest.mark.parametrize("dtype", ('e', 'f', 'd')) @pytest.mark.parametrize("data, escape", ( @@ -1813,8 +1811,6 @@ def test_unary_spurious_fpexception(self, ufunc, dtype, data, escape): # FIXME: NAN raises FP invalid exception: # - ceil/float16 on MSVC:32-bit # - spacing/float16 on almost all platforms - # FIXME: skipped on MSVC:32-bit during switch to Meson, 10 cases fail - # when SIMD support not present / disabled if ufunc in (np.spacing, np.ceil) and dtype == 'e': return array = np.array(data, dtype=dtype)