Skip to content

Commit

Permalink
Merge pull request numpy#24400 from rgommers/fix-msvc-xfail
Browse files Browse the repository at this point in the history
TST: revert xfail in `test_umath.py`
  • Loading branch information
mattip committed Aug 13, 2023
2 parents 250e147 + 451099e commit 104addf
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions numpy/core/tests/test_umath.py
Expand Up @@ -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", (
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 104addf

Please sign in to comment.