@@ -77,9 +77,6 @@ def test_array_comparisons(op, a, b):
7777@pytest .mark .parametrize ("a" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
7878@pytest .mark .parametrize ("b" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
7979def test_array_minmax (op , a , b ):
80- if op in ["fmin" , "fmax" ]:
81- pytest .skip ("fmin and fmax ufuncs are not yet supported" )
82-
8380 op_func = getattr (np , op )
8481 quad_a = np .array ([QuadPrecision (a )])
8582 quad_b = np .array ([QuadPrecision (b )])
@@ -96,9 +93,6 @@ def test_array_minmax(op, a, b):
9693@pytest .mark .parametrize ("a" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
9794@pytest .mark .parametrize ("b" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
9895def test_array_aminmax (op , a , b ):
99- if op in ["nanmin" , "nanmax" ]:
100- pytest .skip ("fmin and fmax ufuncs are not yet supported" )
101-
10296 op_func = getattr (np , op )
10397 quad_ab = np .array ([QuadPrecision (a ), QuadPrecision (b )])
10498 float_ab = np .array ([float (a ), float (b )])
0 commit comments