Skip to content

Commit

Permalink
fix bug with job submission to slurm where build script was not
Browse files Browse the repository at this point in the history
generated properly
  • Loading branch information
shahzebsiddiqui committed Nov 8, 2024
1 parent 905a1d7 commit 06b3a4e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions buildtest/builders/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,9 +639,7 @@ def _get_execution_command(self) -> List[str]:
elif self.is_container_executor():
return self.get_container_invocation()
else:
launcher = self.buildexecutor.executors[self.executor].launcher_command(
self.testpath
)
launcher = self.buildexecutor.executors[self.executor].launcher_command( numprocs=self.numprocs, numnodes=self.numnodes)
return [" ".join(launcher) + " " + f"{self.testpath}"]

def _copy_build_script_to_test_root(self) -> None:
Expand Down

0 comments on commit 06b3a4e

Please sign in to comment.