For the submit it again an error in python3.
I found out about it last week.
And have made the corrections on the trunk.
The issue is that the option --mpi is ignored.
You can have a look in the trunk at the correction it was in commit 12706
The code below was the correction
@@ -549,9 +549,9 @@ class Study(object):
# - runcmd if options.hpc
# - cas_files[name]['run'] and cas_files[name]['sortie'] otherwise
# update mpi command if necessary
- if self.cfg['MPI'] != {}:
+ if self.cfg['MPI'] != {} or options.mpi:
self.run_cmd = self.mpi_cmd.replace('<exename>', self.exe_name)
- if self.cfg['HPC'] == {}:
+ if self.cfg['HPC'] == {} or options.mpi:
self.run_local()
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<