We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a8e58 commit ca48dd3Copy full SHA for ca48dd3
array_api_tests/test_special_cases.py
@@ -1174,8 +1174,8 @@ def parse_binary_case_block(case_block: str) -> List[BinaryCase]:
1174
op = getattr(operator, op_name)
1175
name_to_func[op_name] = op
1176
# We collect inplace operator test cases seperately
1177
- if stub.__name__ == "equal":
1178
- break
+ if "equal" in stub.__name__:
+ continue
1179
iop_name = "__i" + op_name[2:]
1180
iop = getattr(operator, iop_name)
1181
for case in cases:
0 commit comments