Skip to content

Commit 0aebb1b

Browse files
committed
Log exception downloading artifacts stack (#1260)
1 parent e7c8b86 commit 0aebb1b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bot/code_coverage_bot/hooks/base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ def retrieve_source_and_artifacts(self):
119119
"Exception while downloading coverage artifacts or cloning repository",
120120
exception=exc,
121121
)
122+
from traceback import format_exception
123+
124+
logger.error(format_exception(exc, exc, exc.__traceback__))
122125
os._exit(1)
123126

124127
def build_reports(self, only=None):

0 commit comments

Comments
 (0)