diff --git a/selfdrive/test/process_replay/test_processes.py b/selfdrive/test/process_replay/test_processes.py index d0818ad8f6..aec1692cc7 100755 --- a/selfdrive/test/process_replay/test_processes.py +++ b/selfdrive/test/process_replay/test_processes.py @@ -47,10 +47,11 @@ segments = [ ("MAZDA", "fakedata|2022-01-20--18-09-32--0"), ] -BASE_URL = "https://commadataci.blob.core.windows.net/openpilotci/" - # dashcamOnly makes don't need to be tested until a full port is done excluded_interfaces = ["mock", "ford", "mazda", "tesla"] + +BASE_URL = "https://commadataci.blob.core.windows.net/openpilotci/" + # run the full test (including checks) when no args given FULL_TEST = len(sys.argv) <= 1 diff --git a/selfdrive/test/process_replay/update_refs.py b/selfdrive/test/process_replay/update_refs.py index 7a5cfc03b5..a4e332fa94 100755 --- a/selfdrive/test/process_replay/update_refs.py +++ b/selfdrive/test/process_replay/update_refs.py @@ -16,7 +16,7 @@ if __name__ == "__main__": ref_commit = get_commit() if ref_commit is None: - raise Exception("couldn't get ref commit") + raise Exception("Couldn't get ref commit") with open(ref_commit_fn, "w") as f: f.write(ref_commit) @@ -45,4 +45,4 @@ if __name__ == "__main__": upload_file(log_fn, os.path.basename(log_fn)) os.remove(log_fn) - print(f'done\nnew reference commit: {ref_commit}') + print(f'Done\nNew reference commit: {ref_commit}')