@@ -119,6 +119,7 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__
119119array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__xor__(x, s)]
120120array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__xor__(x1, x2)]
121121array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[bitwise_xor(x1, x2)]
122+ array_api_tests/test_operators_and_elementwise_functions.py::test_copysign
122123array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
123124array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x1, x2)]
124125array_api_tests/test_operators_and_elementwise_functions.py::test_divide[divide(x1, x2)]
@@ -131,11 +132,13 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[f
131132array_api_tests/test_operators_and_elementwise_functions.py::test_greater[__gt__(x1, x2)]
132133array_api_tests/test_operators_and_elementwise_functions.py::test_greater[greater(x1, x2)]
133134array_api_tests/test_operators_and_elementwise_functions.py::test_greater_equal[greater_equal(x1, x2)]
135+ array_api_tests/test_operators_and_elementwise_functions.py::test_hypot
134136array_api_tests/test_operators_and_elementwise_functions.py::test_less[__lt__(x1, x2)]
135137array_api_tests/test_operators_and_elementwise_functions.py::test_less[less(x1, x2)]
136138array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[__le__(x1, x2)]
137139array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[less_equal(x1, x2)]
138140array_api_tests/test_operators_and_elementwise_functions.py::test_logaddexp
141+ array_api_tests/test_operators_and_elementwise_functions.py::test_minimum
139142array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
140143array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x, s)]
141144array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x1, x2)]
@@ -246,3 +249,21 @@ array_api_tests/test_special_cases.py::test_binary[remainder(x1_i is +0 and x2_i
246249array_api_tests/test_special_cases.py::test_binary[remainder(x1_i is -0 and x2_i < 0) -> -0]
247250array_api_tests/test_special_cases.py::test_binary[remainder(x1_i is -0 and x2_i > 0) -> +0]
248251array_api_tests/test_special_cases.py::test_iop[__iadd__(x1_i is -0 and x2_i is -0) -> -0]
252+
253+ # 2023.12 support
254+ array_api_tests/test_has_names.py::test_has_names[statistical-cumulative_sum]
255+ array_api_tests/test_has_names.py::test_has_names[info-__array_namespace_info__]
256+ array_api_tests/test_inspection_functions.py::test_array_namespace_info
257+ array_api_tests/test_inspection_functions.py::test_array_namespace_info_dtypes
258+ array_api_tests/test_searching_functions.py::test_searchsorted
259+ array_api_tests/test_signatures.py::test_func_signature[cumulative_sum]
260+ array_api_tests/test_signatures.py::test_func_signature[from_dlpack]
261+ array_api_tests/test_signatures.py::test_func_signature[astype]
262+ array_api_tests/test_signatures.py::test_func_signature[__array_namespace_info__]
263+ array_api_tests/test_signatures.py::test_array_method_signature[__dlpack__]
264+ array_api_tests/test_signatures.py::test_info_func_signature[capabilities]
265+ array_api_tests/test_signatures.py::test_info_func_signature[default_device]
266+ array_api_tests/test_signatures.py::test_info_func_signature[default_dtypes]
267+ array_api_tests/test_signatures.py::test_info_func_signature[devices]
268+ array_api_tests/test_signatures.py::test_info_func_signature[dtypes]
269+ array_api_tests/test_statistical_functions.py::test_cumulative_sum
0 commit comments