Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/print_skipped.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

def main(filename):
if not os.path.isfile(filename):
return
raise RuntimeError(f"Could not find junit file {filename!r}")

tree = et.parse(filename)
root = tree.getroot()
current_class = ""
for el in root.findall("testcase"):
for el in root.iter("testcase"):
cn = el.attrib["classname"]
for sk in el.findall("skipped"):
old_class = current_class
Expand Down