From 2f53ea37e59385b14a50c92398f2c23890f7f684 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sat, 28 Sep 2024 13:31:56 -0400 Subject: [PATCH] try printing GitHub job summary style 3 --- tools/regression-tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/regression-tests/run_tests.py b/tools/regression-tests/run_tests.py index a93c04d239..1faa45d94c 100755 --- a/tools/regression-tests/run_tests.py +++ b/tools/regression-tests/run_tests.py @@ -1522,7 +1522,7 @@ if __name__ == "__main__": # print notice to GitHub with open(os.environ.get('GITHUB_STEP_SUMMARY'), 'w') as f: - print(f, f"Skipped: {skipped_tests} Failed: {error_tests} Completed: {completed_tests}") + print(f"Skipped: {skipped_tests} Failed: {error_tests} Completed: {completed_tests}", file=f) if memleak_tests < completed_tests and 'valgrind' in config['mpiexec']: msg += f" - memory leak detected : {memleak_tests}\n"