Skip to content

Commit

Permalink
traceback error not lethal
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiulini committed Dec 6, 2023
1 parent fd64138 commit ebe5b97
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/haddock/libs/libworkflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,11 @@ def postprocess(self) -> None:
capri_steps.append(step.order) # type: ignore
# call cli_analyse (no need for capri_dicts, it's all precalculated)
cli_analyse("./", capri_steps, top_cluster=10, format=None, scale=None)
# call cli_traceback
cli_traceback("./")
# call cli_traceback. If it fails, it's not a big deal
try:
cli_traceback("./")
except Exception as e:
log.warning(f"Error running traceback: {e}")


class Workflow:
Expand Down

0 comments on commit ebe5b97

Please sign in to comment.