diff --git a/scripts/experiments/feature043/run_sequence_triage_experiment.py b/scripts/experiments/feature043/run_sequence_triage_experiment.py index 9a6359f..1f278ed 100755 --- a/scripts/experiments/feature043/run_sequence_triage_experiment.py +++ b/scripts/experiments/feature043/run_sequence_triage_experiment.py @@ -56,6 +56,7 @@ def rsync_from_remote(target: str, source: str | Path, destination: Path) -> Non def rsync_run_artifacts_from_remote(target: str, source: str | Path, destination: Path) -> None: destination.mkdir(parents=True, exist_ok=True) + rsync_base = ["rsync", "-az", "--partial", "--partial-dir=.rsync-partial"] for name in [ "result.ccr", "result.cir", @@ -65,7 +66,7 @@ def rsync_run_artifacts_from_remote(target: str, source: str | Path, destination "started-at.txt", "finished-at.txt", ]: - run_local(["rsync", "-a", f"{target}:{source}/{name}", f"{destination}/"]) + run_local([*rsync_base, f"{target}:{source}/{name}", f"{destination}/"]) def load_json(path: Path) -> Any: