add the task_id to the integration failure logs (#446)

This commit is contained in:
bmc-msft
2021-01-21 13:35:54 -05:00
committed by GitHub
parent 95bd4ac308
commit 4f941d5ff2

View File

@ -272,7 +272,8 @@ class TestOnefuzz:
# check if the task itself has an error
if task.error is not None:
return "task failed: %s - %s (%s)" % (
return "task failed: %s - %s - %s (%s)" % (
task_id,
self.jobs[self.tasks[task_id]].config.name,
task.config.task.type.name,
task.error,