From c1040ad9bbcf331226bd89e9babfc24afcca231a Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sat, 28 Sep 2024 13:13:43 -0400 Subject: [PATCH] try printing GitHub job summary style 1 --- tools/regression-tests/run_tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/regression-tests/run_tests.py b/tools/regression-tests/run_tests.py index 63fa8c59c1..e99a9050ab 100755 --- a/tools/regression-tests/run_tests.py +++ b/tools/regression-tests/run_tests.py @@ -1519,6 +1519,10 @@ if __name__ == "__main__": msg += f" - Skipped : {skipped_tests}\n" msg += f" - Failed : {error_tests}\n" msg += f" - Completed: {completed_tests}\n" + + # print notice to GitHub + print(f"::notice:: Skipped: {skipped_tests} Failed: {error_tests} Completed: {completed_tests}") + if memleak_tests < completed_tests and 'valgrind' in config['mpiexec']: msg += f" - memory leak detected : {memleak_tests}\n" if passed_tests <= completed_tests: