Skip to content

Commit b78734a

Browse files
committed
Fix xfail collection
1 parent d5ba0c6 commit b78734a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def xp_has_ext(ext: str) -> bool:
7777
if xfails_path.exists():
7878
with open(xfails_path) as f:
7979
for line in f:
80-
if line.startswith('test'):
80+
if line.startswith('array_api_tests'):
8181
id_ = line.strip('\n')
8282
xfail_ids.append(id_)
8383

0 commit comments

Comments
 (0)