Skip to content
Snippets Groups Projects
Commit 28f6ff29 authored by Papeleux Luc's avatar Papeleux Luc
Browse files

comment the removal of cfg file after test completion (may help retrieve information after run

parent 1d001f65
No related branches found
No related tags found
No related merge requests found
......@@ -283,15 +283,15 @@ class LaunchJob(ParametricJob):
fNames = []
if self.pars['RUNMETHOD'].val == 'sge':
fNames.append(self.qDelScriptName(self.jobId))
fNames.append(self.cfgfile)
#fNames.append(self.cfgfile)
elif self.pars['RUNMETHOD'].val == 'slurm':
fNames.append(self.sCancelScriptName(self.jobId))
fNames.append(self.cfgfile)
#fNames.append(self.cfgfile)
elif self.pars['RUNMETHOD'].val == 'at' or self.pars['RUNMETHOD'].val == 'batch':
fNames.append("kill%s.py"%self.jobId)
fNames.append("atrm%s.py"%self.jobId)
fNames.append("runbatch%s.sh"%self.jobId)
fNames.append(self.cfgfile)
#fNames.append(self.cfgfile)
else:
fNames.append("kill%s.py"%self.jobId)
for fil in fNames:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment