Skip to content

Commit 534db89

Browse files
committed
Remove compatibilit hack for old tag format
1 parent 04a810f commit 534db89

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ def read_tags(test_file: Path, config: Config) -> list[TestId]:
850850
if tag_file.exists():
851851
with open(tag_file) as f:
852852
for line in f:
853-
test = line.strip().replace('*graalpython.lib-python.3.', '').replace('*', '')
853+
test = line.strip()
854854
tags.append(TestId(test_file, test))
855855
return tags
856856
return tags

0 commit comments

Comments
 (0)