From 28f6ff2919f7bb3d9d8a4edd6e7f4187abbf41bd Mon Sep 17 00:00:00 2001 From: Luc Papeleux <L.Papeleux@ULiege.be> Date: Wed, 2 Nov 2022 15:46:48 +0100 Subject: [PATCH] comment the removal of cfg file after test completion (may help retrieve information after run --- launch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/launch.py b/launch.py index 5eeec4f..33ba364 100755 --- a/launch.py +++ b/launch.py @@ -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: -- GitLab