From d5352f6a7c56e6d3637f1c2b0f95da89cc30f18c Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Wed, 23 Oct 2024 11:34:31 -0600 Subject: [PATCH] try excluding `math.inf` --- tests/test_array.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_array.py b/tests/test_array.py index 2443482a9..5aa62837c 100644 --- a/tests/test_array.py +++ b/tests/test_array.py @@ -1,5 +1,4 @@ import json -import math import pickle from itertools import accumulate from typing import Any, Literal @@ -449,7 +448,7 @@ def test_array_create_order( (np.inf, ["Infinity", 0.0]), (np.inf * 1j, ["NaN", "Infinity"]), (-np.inf, ["-Infinity", 0.0]), - (math.inf, ["Infinity", 0.0]), + # (math.inf, ["Infinity", 0.0]), ], ) async def test_special_complex_fill_values_roundtrip(fill_value: Any, expected: list[Any]) -> None: