Skip to content

Commit

Permalink
Fix CI restarts
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Mullen committed Nov 21, 2024
1 parent 09d2592 commit b78fbff
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tst/scripts/utils/artemis.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,8 @@ def run(nproc, input_filename, arguments, restart=None):
run_command += ["--oversubscribe"]
run_command += ["-n", str(nproc), os.path.join(artemis_exe_dir, "artemis")]
if restart is not None:
run_command += ["-r", restart]
input_filename_full = os.path.join(artemis_inputs_dir, input_filename)
run_command += ["-i", input_filename_full]
run_command += ["-r", os.path.join(artemis_data_dir, restart)]
run_command += ["-i", os.path.join(artemis_inputs_dir, input_filename)]
run_command += ["-d", artemis_data_dir]

try:
Expand Down

0 comments on commit b78fbff

Please sign in to comment.