aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/reports_collection.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/steps/reports_collection.py')
-rw-r--r--src/onaptests/steps/reports_collection.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/onaptests/steps/reports_collection.py b/src/onaptests/steps/reports_collection.py
index 2f92660..4f0965f 100644
--- a/src/onaptests/steps/reports_collection.py
+++ b/src/onaptests/steps/reports_collection.py
@@ -25,6 +25,7 @@ class Report:
step_execution_status: ReportStepStatus
step_execution_duration: float
step_component: str
+ step_error_reason: List[str]
class ReportsCollection:
@@ -103,7 +104,8 @@ class ReportsCollection:
'description': step_report.step_description,
'status': step_report.step_execution_status.value,
'duration': step_report.step_execution_duration,
- 'component': step_report.step_component
+ 'component': step_report.step_component,
+ 'reason': step_report.step_error_reason
}
for step_report in reversed(self.report)
]