Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions easybuild/easyblocks/generic/pythonpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,8 @@ def test_step(self, return_output_ec=False):

if return_output_ec:
(out, ec) = run_cmd(cmd, log_all=False, log_ok=False, simple=False)
# need to log seperately, since log_all and log_ok need to be false to retreive out and ec
self.log.info("cmd '%s' exited with exit code %s and output:\n%s", cmd, ec, out)
else:
run_cmd(cmd, log_all=True, simple=True)

Expand Down