From e8184e63a567d3ae9a87f6e5b4a6dd1846b794e1 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 11 Sep 2024 09:15:05 -0400 Subject: [PATCH] create dummy output files to prevent test job failures --- tools/regression-tests/run_tests.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tools/regression-tests/run_tests.py b/tools/regression-tests/run_tests.py index d086f28b2c..63fa8c59c1 100755 --- a/tools/regression-tests/run_tests.py +++ b/tools/regression-tests/run_tests.py @@ -1236,6 +1236,22 @@ if __name__ == "__main__": os.remove(f"input-list-{idx}.txt") except: pass + filename = f"run-{idx}.log" + with open(filename, "w") as f: + f.write('\n') + f.close() + filename = f"progress-{idx}.yaml" + with open(filename, "w") as f: + f.write('\n') + f.close() + filename = f"output-{idx}.xml" + with open(filename, "w") as f: + f.write('\n') + f.close() + filename = f"failure-{idx}.yaml" + with open(filename, "w") as f: + f.write('\n') + f.close() quit() # if the example folders are not specified from the command-line argument --example-folders