(application, exit_code)
| 88 | |
| 89 | |
| 90 | def PrintTestFooter(application, exit_code): |
| 91 | Kratos.Logger.Flush() |
| 92 | appendix = f" with exit code {exit_code}!" if exit_code != 0 else "." |
| 93 | print(f"Completed {application} tests{appendix}\n", file=sys.stderr, flush=True) |
| 94 | |
| 95 | |
| 96 | def PrintTestSummary(exit_codes): |