Skip to content

Commit

Permalink
replace run_cmd with run_shell_cmd in custom easyblock for PSI (`…
Browse files Browse the repository at this point in the history
…psi.py`)
  • Loading branch information
bartoldeman committed Feb 12, 2024
1 parent ca0171e commit 58895af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/p/psi.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from easybuild.framework.easyconfig import BUILD
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.modules import get_software_root
from easybuild.tools.run import run_cmd
from easybuild.tools.run import run_shell_cmd


class EB_PSI(CMakeMake):
Expand Down Expand Up @@ -224,7 +224,7 @@ def test_step(self):
else:
paracmd = "-j %s" % self.cfg['parallel']
cmd = "ctest %s %s" % (paracmd, self.cfg['runtest'])
run_cmd(cmd, log_all=True, simple=False)
run_shell_cmd(cmd)
else:
super(EB_PSI, self).test_step()

Expand Down

0 comments on commit 58895af

Please sign in to comment.