From 5c43684273ae00d48e38dd8cf6b415d15436e945 Mon Sep 17 00:00:00 2001 From: Axel Naumann Date: Wed, 13 Sep 2023 12:39:53 +0200 Subject: [PATCH] [ci] Add title to list of failed tests. --- .github/workflows/root-ci-config/build_root.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/root-ci-config/build_root.py b/.github/workflows/root-ci-config/build_root.py index ee6c098b68417..1838d34a54e09 100755 --- a/.github/workflows/root-ci-config/build_root.py +++ b/.github/workflows/root-ci-config/build_root.py @@ -135,6 +135,7 @@ def handle_test_failure(ctest_returncode): logloc = f'{WORKDIR}/build/Testing/Temporary/LastTestsFailed.log' if os.path.isfile(logloc): with open(logloc, 'r') as logf: + print("TEST FAILURES:") print(logf.read()) else: print(f'Internal error: cannot find {logloc}\nAdding some debug output:')