Skip to content

Commit 627175e

Browse files
committed
revert
1 parent eb4e508 commit 627175e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

numpy-1-21-xfails.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,20 +71,25 @@ array_api_tests/test_signatures.py::test_func_signature[argmin]
7171
# type promotion issues
7272
array_api_tests/test_manipulation_functions.py::test_concat
7373
array_api_tests/test_operators_and_elementwise_functions.py::test_add[__add__(x, s)]
74+
array_api_tests/test_operators_and_elementwise_functions.py::test_add[__add__(x1, x2)]
7475
array_api_tests/test_operators_and_elementwise_functions.py::test_add[__iadd__(x, s)]
7576
array_api_tests/test_operators_and_elementwise_functions.py::test_add[add(x1, x2)]
7677
array_api_tests/test_operators_and_elementwise_functions.py::test_atan2
7778
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__and__(x, s)]
7879
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__and__(x1, x2)]
7980
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__iand__(x, s)]
81+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[bitwise_and(x1, x2)]
8082
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__ilshift__(x, s)]
8183
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__lshift__(x, s)]
84+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__lshift__(x1, x2)]
85+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[bitwise_left_shift(x1, x2)]
8286
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__ior__(x, s)]
8387
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__or__(x, s)]
8488
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__or__(x1, x2)]
8589
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[bitwise_or(x1, x2)]
8690
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__irshift__(x, s)]
8791
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__rshift__(x, s)]
92+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__rshift__(x1, x2)]
8893
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[bitwise_right_shift(x1, x2)]
8994
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__ixor__(x, s)]
9095
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__xor__(x, s)]
@@ -94,17 +99,29 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_copysign
9499
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
95100
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x1, x2)]
96101
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[divide(x1, x2)]
102+
array_api_tests/test_operators_and_elementwise_functions.py::test_equal[__eq__(x1, x2)]
103+
array_api_tests/test_operators_and_elementwise_functions.py::test_equal[equal(x1, x2)]
97104
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x, s)]
98105
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x1, x2)]
99106
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x, s)]
100107
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[floor_divide(x1, x2)]
108+
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[__gt__(x1, x2)]
109+
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[greater(x1, x2)]
110+
array_api_tests/test_operators_and_elementwise_functions.py::test_greater_equal[greater_equal(x1, x2)]
101111
array_api_tests/test_operators_and_elementwise_functions.py::test_hypot
112+
array_api_tests/test_operators_and_elementwise_functions.py::test_less[__lt__(x1, x2)]
113+
array_api_tests/test_operators_and_elementwise_functions.py::test_less[less(x1, x2)]
114+
array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[__le__(x1, x2)]
115+
array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[less_equal(x1, x2)]
102116
array_api_tests/test_operators_and_elementwise_functions.py::test_logaddexp
117+
array_api_tests/test_operators_and_elementwise_functions.py::test_maximum
103118
array_api_tests/test_operators_and_elementwise_functions.py::test_minimum
104119
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
105120
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x, s)]
106121
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x1, x2)]
107122
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[multiply(x1, x2)]
123+
array_api_tests/test_operators_and_elementwise_functions.py::test_not_equal[__ne__(x1, x2)]
124+
array_api_tests/test_operators_and_elementwise_functions.py::test_not_equal[not_equal(x1, x2)]
108125
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__ipow__(x, s)]
109126
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x, s)]
110127
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x1, x2)]

0 commit comments

Comments
 (0)