diff --git a/tools/ci/render_test_output.py b/tools/ci/render_test_output.py index 54b5ffbf86..48dd3987a3 100755 --- a/tools/ci/render_test_output.py +++ b/tools/ci/render_test_output.py @@ -10,7 +10,10 @@ import xml.etree.ElementTree as ET suitename = sys.argv[1] xmlfiles = sys.argv[2:] +print(f"Arguments: {sys.argv}") + for xmlfile in xmlfiles: + print(f"Handling: {xmlfile}") tree = ET.parse(xmlfile) root = tree.getroot()