mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'ci/ttfw_fix_dut_exception_not_added_to_junit_report_v4.3' into 'release/v4.3'
ttfw: fix DUT exception not added to junit report (v4.3) See merge request espressif/esp-idf!13611
This commit is contained in:
commit
850d8170f5
@ -222,7 +222,7 @@ def test_method(**kwargs):
|
|||||||
# and raise exception in DUT close to fail test case if reset detected.
|
# and raise exception in DUT close to fail test case if reset detected.
|
||||||
if close_errors:
|
if close_errors:
|
||||||
for error in close_errors:
|
for error in close_errors:
|
||||||
junit_test_case.add_failure_info(str(error))
|
junit_test_case.add_failure_info('env close error: {}'.format(error))
|
||||||
result = False
|
result = False
|
||||||
if not case_info['junit_report_by_case'] or unexpected_error:
|
if not case_info['junit_report_by_case'] or unexpected_error:
|
||||||
JunitReport.test_case_finish(junit_test_case)
|
JunitReport.test_case_finish(junit_test_case)
|
||||||
|
@ -460,8 +460,7 @@ class IDFDUT(DUT.SerialDUT):
|
|||||||
def close(self):
|
def close(self):
|
||||||
super(IDFDUT, self).close()
|
super(IDFDUT, self).close()
|
||||||
if not self.allow_dut_exception and self.get_exceptions():
|
if not self.allow_dut_exception and self.get_exceptions():
|
||||||
Utility.console_log('DUT exception detected on {}'.format(self), color='red')
|
raise IDFDUTException('DUT exception detected on {}'.format(self))
|
||||||
raise IDFDUTException()
|
|
||||||
|
|
||||||
|
|
||||||
class ESP32DUT(IDFDUT):
|
class ESP32DUT(IDFDUT):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user