try printing GitHub job summary style 1

This commit is contained in:
Axel Kohlmeyer
2024-09-28 13:13:43 -04:00
parent 98834a3e27
commit c1040ad9bb

View File

@ -1519,6 +1519,10 @@ if __name__ == "__main__":
msg += f" - Skipped : {skipped_tests}\n" msg += f" - Skipped : {skipped_tests}\n"
msg += f" - Failed : {error_tests}\n" msg += f" - Failed : {error_tests}\n"
msg += f" - Completed: {completed_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']: if memleak_tests < completed_tests and 'valgrind' in config['mpiexec']:
msg += f" - memory leak detected : {memleak_tests}\n" msg += f" - memory leak detected : {memleak_tests}\n"
if passed_tests <= completed_tests: if passed_tests <= completed_tests: