From 87824e180f63b8adec1a9d9743ba7b69ee228206 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Mon, 9 May 2022 14:57:01 -0700 Subject: [PATCH] update messages --- selfdrive/test/process_replay/test_processes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/test/process_replay/test_processes.py b/selfdrive/test/process_replay/test_processes.py index 0b3d7855d5..17ac118187 100755 --- a/selfdrive/test/process_replay/test_processes.py +++ b/selfdrive/test/process_replay/test_processes.py @@ -128,7 +128,7 @@ if __name__ == "__main__": parser.add_argument("--update-refs", action="store_true", help="Regenerates and uploads ref logs on current commit") parser.add_argument("--upload-only", action="store_true", - help="Skips testing processes and uploads logs from previous run") + help="Uploads logs from previous test run") args = parser.parse_args() full_test = 0 == len(args.whitelist_procs) == len(args.whitelist_cars) == len(args.blacklist_procs) == \ @@ -204,6 +204,6 @@ if __name__ == "__main__": if upload: with open(REF_COMMIT_FN, "w") as f: f.write(cur_commit) - print(f"New ref commit: {ref_commit}") + print(f"\n\nUpdated refs. New ref commit: {ref_commit}") sys.exit(int(failed))