@@ -76,6 +76,10 @@ array_api_tests/test_set_functions.py::test_unique_counts
76
76
array_api_tests/test_set_functions.py::test_unique_inverse
77
77
array_api_tests/test_set_functions.py::test_unique_values
78
78
79
+ # The test suite is incorrectly checking sums that have loss of significance
80
+ # (https://github.com/data-apis/array-api-tests/issues/168)
81
+ array_api_tests/test_statistical_functions.py::test_sum
82
+
79
83
# NumPy 1.21 doesn't support NPY_PROMOTION_STATE=weak, so many tests fail with
80
84
# type promotion issues
81
85
array_api_tests/test_manipulation_functions.py::test_concat
@@ -113,6 +117,7 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[_
113
117
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x, s)]
114
118
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[floor_divide(x1, x2)]
115
119
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[greater(x1, x2)]
120
+ array_api_tests/test_operators_and_elementwise_functions.py::test_less[__lt__(x1, x2)]
116
121
array_api_tests/test_operators_and_elementwise_functions.py::test_logaddexp
117
122
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
118
123
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x, s)]
@@ -149,8 +154,10 @@ array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is +0 and x2_i <
149
154
array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is +0 and x2_i > 0) -> +0]
150
155
array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is -0 and x2_i < 0) -> -0]
151
156
array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is -0 and x2_i > 0) -> +0]
157
+ array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) < 1 and x2_i is +infinity) -> +0]
152
158
array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) < 1 and x2_i is -infinity) -> +infinity]
153
159
array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) > 1 and x2_i is +infinity) -> +infinity]
160
+ array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) > 1 and x2_i is -infinity) -> +0]
154
161
array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i < 0 and isfinite(x1_i) and isfinite(x2_i) and not x2_i.is_integer()) -> NaN]
155
162
array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is +0 and x2_i < 0) -> +infinity]
156
163
array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is +0 and x2_i > 0) -> +0]
0 commit comments