@@ -7,8 +7,13 @@ array_api_tests/test_array_object.py::test_scalar_casting[__index__(int8)]
77array_api_tests/test_array_object.py::test_scalar_casting[__index__(int16)]
88array_api_tests/test_array_object.py::test_scalar_casting[__index__(int32)]
99array_api_tests/test_array_object.py::test_scalar_casting[__index__(int64)]
10+
11+ # testsuite bug (https://github.com/data-apis/array-api-tests/issues/172)
12+ array_api_tests/test_array_object.py::test_getitem
13+
1014# copy=False is not yet implemented
1115array_api_tests/test_creation_functions.py::test_asarray_arrays
16+
1217# finfo test is testing that the result is a float instead of float32 (see
1318# also https://github.com/data-apis/array-api/issues/405)
1419array_api_tests/test_data_type_functions.py::test_finfo[float32]
@@ -23,6 +28,7 @@ array_api_tests/test_has_names.py::test_has_names[array_attribute-mT]
2328# and some require https://github.com/data-apis/array-api-tests/pull/101 to
2429array_api_tests/test_linalg.py::test_eigvalsh
2530array_api_tests/test_linalg.py::test_matrix_norm
31+ array_api_tests/test_linalg.py::test_matrix_power
2632array_api_tests/test_linalg.py::test_solve
2733array_api_tests/test_linalg.py::test_svd
2834array_api_tests/test_linalg.py::test_svdvals
@@ -32,6 +38,8 @@ array_api_tests/test_linalg.py::test_trace
3238array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
3339array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[__mod__(x1, x2)]
3440array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[__imod__(x1, x2)]
41+ array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[__mod__(x, s)]
42+ array_api_tests/test_operators_and_elementwise_functions.py::test_subtract[__sub__(x, s)]
3543# floating point inaccuracy
3644array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[remainder(x1, x2)]
3745
@@ -80,6 +88,7 @@ array_api_tests/test_special_cases.py::test_binary[add(isfinite(x1_i) and x1_i !
8088array_api_tests/test_special_cases.py::test_binary[__add__(x1_i is -0 and x2_i is -0) -> -0]
8189array_api_tests/test_special_cases.py::test_binary[__add__(x1_i is -0 and x2_i is +0) -> +0]
8290array_api_tests/test_special_cases.py::test_binary[__add__(x1_i is +0 and x2_i is -0) -> +0]
91+ array_api_tests/test_special_cases.py::test_binary[__add__(isfinite(x1_i) and x1_i != 0 and x2_i == -x1_i) -> +0]
8392array_api_tests/test_special_cases.py::test_binary[atan2(x1_i > 0 and x2_i is -0) -> roughly +pi/2]
8493array_api_tests/test_special_cases.py::test_binary[atan2(x1_i is +0 and x2_i is -0) -> roughly +pi]
8594array_api_tests/test_special_cases.py::test_binary[atan2(x1_i is -0 and x2_i > 0) -> -0]
0 commit comments