diff --git a/pandas/tests/computation/test_eval.py b/pandas/tests/computation/test_eval.py index 5796ea52899d2..bc558b7d2f435 100644 --- a/pandas/tests/computation/test_eval.py +++ b/pandas/tests/computation/test_eval.py @@ -206,6 +206,10 @@ def test_simple_cmp_ops(self): self.check_simple_cmp_op(lhs, cmp_op, rhs) @pytest.mark.slow + @pytest.mark.xfail( + compat.PY38 and not compat.is_platform_mac(), + reason="Numeric imprecision GH#37328", + ) def test_binary_arith_ops(self): for lhs, op, rhs in product(self.lhses, self.arith_ops, self.rhses): self.check_binary_arith_op(lhs, op, rhs)