File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 41
41
array_api_tests/test_signatures.py::test_function_keyword_only_args[__dlpack__]
42
42
# floor_divide has an issue related to https://github.com/data-apis/array-api/issues/264
43
43
array_api_tests/test_elementwise_functions.py::test_floor_divide
44
+ # mesgrid doesn't return all arrays as the promoted dtype
45
+ array_api_tests/test_type_promotion.py::test_meshgrid
46
+ # https://github.com/numpy/numpy/pull/20066#issuecomment-947056094
47
+ array_api_tests/test_type_promotion.py::test_where
48
+ # shape mismatches are not handled
49
+ array_api_tests/test_type_promotion.py::test_tensordot
44
50
45
51
EOF
46
52
Original file line number Diff line number Diff line change @@ -102,5 +102,6 @@ def pytest_collection_modifyitems(config, items):
102
102
except StopIteration :
103
103
pass
104
104
# workflow xfail_ids
105
- if item .nodeid in xfail_ids :
106
- item .add_marker (mark .xfail (reason = 'xfails.txt' ))
105
+ for id_ in xfail_ids :
106
+ if item .nodeid .startswith (id_ ):
107
+ item .add_marker (mark .xfail (reason = 'xfails.txt' ))
You can’t perform that action at this time.
0 commit comments