@@ -7,8 +7,13 @@ array_api_tests/test_array_object.py::test_scalar_casting[__index__(int8)]
7
7
array_api_tests/test_array_object.py::test_scalar_casting[__index__(int16)]
8
8
array_api_tests/test_array_object.py::test_scalar_casting[__index__(int32)]
9
9
array_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
+
10
14
# copy=False is not yet implemented
11
15
array_api_tests/test_creation_functions.py::test_asarray_arrays
16
+
12
17
# finfo test is testing that the result is a float instead of float32 (see
13
18
# also https://github.com/data-apis/array-api/issues/405)
14
19
array_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]
23
28
# and some require https://github.com/data-apis/array-api-tests/pull/101 to
24
29
array_api_tests/test_linalg.py::test_eigvalsh
25
30
array_api_tests/test_linalg.py::test_matrix_norm
31
+ array_api_tests/test_linalg.py::test_matrix_power
26
32
array_api_tests/test_linalg.py::test_solve
27
33
array_api_tests/test_linalg.py::test_svd
28
34
array_api_tests/test_linalg.py::test_svdvals
@@ -32,6 +38,8 @@ array_api_tests/test_linalg.py::test_trace
32
38
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
33
39
array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[__mod__(x1, x2)]
34
40
array_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)]
35
43
# floating point inaccuracy
36
44
array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[remainder(x1, x2)]
37
45
@@ -80,6 +88,7 @@ array_api_tests/test_special_cases.py::test_binary[add(isfinite(x1_i) and x1_i !
80
88
array_api_tests/test_special_cases.py::test_binary[__add__(x1_i is -0 and x2_i is -0) -> -0]
81
89
array_api_tests/test_special_cases.py::test_binary[__add__(x1_i is -0 and x2_i is +0) -> +0]
82
90
array_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]
83
92
array_api_tests/test_special_cases.py::test_binary[atan2(x1_i > 0 and x2_i is -0) -> roughly +pi/2]
84
93
array_api_tests/test_special_cases.py::test_binary[atan2(x1_i is +0 and x2_i is -0) -> roughly +pi]
85
94
array_api_tests/test_special_cases.py::test_binary[atan2(x1_i is -0 and x2_i > 0) -> -0]
0 commit comments