I see that exceptions thrown during summary creation are currently ignored:
|
try: |
|
summary = self.summary(full_report) |
|
except Exception: |
|
pass |
Why is that the case? This is quite annoying during analyzer development and I cannot think of a valid reason for this.
Is this maybe for some backwards compatibility to analyzers without a summary function? If so, can't this be made more specific?
I see that exceptions thrown during summary creation are currently ignored:
cortexutils/cortexutils/analyzer.py
Lines 96 to 99 in 3978d77
Why is that the case? This is quite annoying during analyzer development and I cannot think of a valid reason for this.
Is this maybe for some backwards compatibility to analyzers without a summary function? If so, can't this be made more specific?