Skip to content

Commit

Permalink
classy: test: explicit compile output
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusTorrado committed Mar 4, 2025
1 parent 765c43d commit 912d8f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cobaya/theories/classy/classy.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,8 @@ def install(cls, path=None, code=True, no_progress_bars=False, **_kwargs):
env.update({"PYTHON": sys.executable})
process_make = Popen(["make"], cwd=classy_path, stdout=PIPE, stderr=PIPE, env=env)
out, err = process_make.communicate()
log.info(out)
log.info(err)
if process_make.returncode:
log.info(out)
log.info(err)
Expand Down

0 comments on commit 912d8f8

Please sign in to comment.