diff --git a/test/ci_util.py b/test/ci_util.py index 55d494259..07baebeee 100755 --- a/test/ci_util.py +++ b/test/ci_util.py @@ -26,6 +26,7 @@ def main(): (build_type) = parse_args() # + errmsgs=[] for run in run_list: case_tag = run["case"]+"_"+run["suite"] file_out = "../scm/run/" + "output_"+case_tag+"/output.nc" @@ -33,8 +34,13 @@ def main(): os.system("mkdir -p artifact-"+build_type+"/"+case_tag+"/") os.system("cp " + file_out + " artifact-"+build_type+"/"+case_tag+"/output.nc") else: - print("FAIL: Could not copy output for baseline generation") - exit() + errmsgs.append("Could not copy output for baseline generation "+ case_tag) + # end if + # end for + + for errmsg in errmsgs: + print(errmsg) + # end for if __name__ == '__main__': main() diff --git a/test/cmp_rt2bl.py b/test/cmp_rt2bl.py index 7884a5dfa..7c799de26 100755 --- a/test/cmp_rt2bl.py +++ b/test/cmp_rt2bl.py @@ -220,10 +220,6 @@ def main(): # end if # end for - # Bundle all plots into tarball for artifact in github action. - com = 'tar -cvf scm_rt_plots.tar scm_rt_out/*' - result = os.system(com) - # if error_count == 0: print("ALL TESTS PASSED, OUTPUT IS IDENTICAL.")