@@ -83,9 +83,6 @@ def test_array_comparisons(op, a, b):
8383@pytest .mark .parametrize ("a" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
8484@pytest .mark .parametrize ("b" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
8585def test_array_minmax (op , a , b ):
86- if op in ["fmin" , "fmax" ]:
87- pytest .skip ("fmin and fmax ufuncs are not yet supported" )
88-
8986 op_func = getattr (np , op )
9087 quad_a = np .array ([QuadPrecision (a )])
9188 quad_b = np .array ([QuadPrecision (b )])
@@ -104,9 +101,6 @@ def test_array_minmax(op, a, b):
104101@pytest .mark .parametrize ("a" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
105102@pytest .mark .parametrize ("b" , ["3.0" , "12.5" , "100.0" , "0.0" , "-0.0" , "inf" , "-inf" , "nan" , "-nan" ])
106103def test_array_aminmax (op , a , b ):
107- if op in ["nanmin" , "nanmax" ]:
108- pytest .skip ("fmin and fmax ufuncs are not yet supported" )
109-
110104 op_func = getattr (np , op )
111105 quad_ab = np .array ([QuadPrecision (a ), QuadPrecision (b )])
112106 float_ab = np .array ([float (a ), float (b )])
0 commit comments