mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: fix ttfw ignoring test failure if exception in print_debug_info
This commit is contained in:
parent
7d0f1536e4
commit
a463e80d43
@ -185,9 +185,9 @@ class Env(object):
|
||||
dut_close_errors = []
|
||||
for dut_name in self.allocated_duts:
|
||||
dut = self.allocated_duts[dut_name]["dut"]
|
||||
try:
|
||||
if dut_debug:
|
||||
dut.print_debug_info()
|
||||
try:
|
||||
dut.close()
|
||||
except Exception as e:
|
||||
dut_close_errors.append(e)
|
||||
|
Loading…
Reference in New Issue
Block a user