Skip to content

Commit

Permalink
Merge pull request #3074 from bartoldeman/generic-run-cmd-adjust
Browse files Browse the repository at this point in the history
remove `hidden=True` from `run_shell_cmd` in `PythonPackage` easyblock for consistency
  • Loading branch information
SebastianAchilles committed Jan 15, 2024
2 parents 40d1152 + 0aafc8c commit 4e63956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/generic/pythonpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ def test_step(self, return_output_ec=False):
extrapath = "export PYTHONPATH=%s &&" % os.pathsep.join(abs_pylibdirs + ['$PYTHONPATH'])

cmd = self.compose_install_command(test_installdir, extrapath=extrapath)
run_shell_cmd(cmd, hidden=True)
run_shell_cmd(cmd)

self.py_post_install_shenanigans(test_installdir)

Expand Down

0 comments on commit 4e63956

Please sign in to comment.