@@ -89,6 +89,7 @@ array_api_tests/test_set_functions.py::test_unique_values
89
89
# The test suite is incorrectly checking sums that have loss of significance
90
90
# (https://github.com/data-apis/array-api-tests/issues/168)
91
91
array_api_tests/test_statistical_functions.py::test_sum
92
+ array_api_tests/test_statistical_functions.py::test_prod
92
93
93
94
# NumPy 1.21 doesn't support NPY_PROMOTION_STATE=weak, so many tests fail with
94
95
# type promotion issues
@@ -121,21 +122,24 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[bi
121
122
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
122
123
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x1, x2)]
123
124
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[divide(x1, x2)]
124
- array_api_tests/test_operators_and_elementwise_functions.py::test_equal[equal(x1, x2)]
125
125
array_api_tests/test_operators_and_elementwise_functions.py::test_equal[__eq__(x1, x2)]
126
+ array_api_tests/test_operators_and_elementwise_functions.py::test_equal[equal(x1, x2)]
126
127
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x, s)]
127
128
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x1, x2)]
128
129
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x, s)]
129
130
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[floor_divide(x1, x2)]
130
131
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[__gt__(x1, x2)]
131
132
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[greater(x1, x2)]
132
133
array_api_tests/test_operators_and_elementwise_functions.py::test_less[__lt__(x1, x2)]
134
+ array_api_tests/test_operators_and_elementwise_functions.py::test_less[less(x1, x2)]
133
135
array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[less_equal(x1, x2)]
134
136
array_api_tests/test_operators_and_elementwise_functions.py::test_logaddexp
135
137
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
136
138
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x, s)]
137
139
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x1, x2)]
138
140
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[multiply(x1, x2)]
141
+ array_api_tests/test_operators_and_elementwise_functions.py::test_not_equal[__ne__(x1, x2)]
142
+ array_api_tests/test_operators_and_elementwise_functions.py::test_not_equal[not_equal(x1, x2)]
139
143
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__ipow__(x, s)]
140
144
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x, s)]
141
145
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x1, x2)]
0 commit comments