From 2d5b25cfad69631bc3a7d807a3d454ddfa4efb77 Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Thu, 3 Mar 2022 20:39:41 +0000 Subject: [PATCH] Remove the printing of file name to the log as it's doubling up information. --- tools/ci/render_test_output.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/ci/render_test_output.py b/tools/ci/render_test_output.py index 9df3170058..1e7940ce04 100755 --- a/tools/ci/render_test_output.py +++ b/tools/ci/render_test_output.py @@ -13,7 +13,6 @@ print("::group::Arguments") print(f"{sys.argv}") print("::endgroup::") for xmlfile in xmlfiles: - print(f"Handling: {xmlfile}") tree = ET.parse(xmlfile) root = tree.getroot()