From 0ce59989a5919040cd734d44cdf0d9c998da15c0 Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Fri, 25 Feb 2022 11:07:03 +0000 Subject: [PATCH] Log xml files we render. We seem to be missing some tests here (?) --- tools/ci/render_test_output.py | 3 +++ 1 file changed, 3 insertions(+) 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()