Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions PAV/modules/slurmjobcontroller.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ def start(self):
se = os.environ['PV_JOB_RESULTS_LOG_DIR'] + "/slurm-%j.out"
so = os.environ['PV_JOB_RESULTS_LOG_DIR'] + "/slurm-%j.out"
slurm_cmd += " -o " + so + " -e " + se

run_cmd = os.environ['PV_RUNHOME'] + "/" + self.configs['run']['cmd']
run_cmd = os.environ['PV_RUNHOME'] + "/" + self.configs['run']['cmd'] + " " + self.configs['run']['test_args']
os.environ['USER_CMD'] = run_cmd

# Executable is slurm_job_handler.py which is just the wrapper to call the
Expand Down