summaryrefslogtreecommitdiff
path: root/numpy/core/tests/test_casting_floatingpoint_errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/tests/test_casting_floatingpoint_errors.py')
-rw-r--r--numpy/core/tests/test_casting_floatingpoint_errors.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/tests/test_casting_floatingpoint_errors.py b/numpy/core/tests/test_casting_floatingpoint_errors.py
index 4fafc4ed8..d83180171 100644
--- a/numpy/core/tests/test_casting_floatingpoint_errors.py
+++ b/numpy/core/tests/test_casting_floatingpoint_errors.py
@@ -1,6 +1,6 @@
import pytest
from pytest import param
-
+from numpy.testing import IS_WASM
import numpy as np
@@ -136,6 +136,7 @@ def check_operations(dtype, value):
yield flat_assignment
+@pytest.mark.skipif(IS_WASM, reason="no wasm fp exception support")
@pytest.mark.parametrize(["value", "dtype"], values_and_dtypes())
@pytest.mark.filterwarnings("ignore::numpy.ComplexWarning")
def test_floatingpoint_errors_casting(dtype, value):