فهرست منبع

ci: Log failure to close any DUT

Angus Gratton 5 سال پیش
والد
کامیت
340e2dff12
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      tools/ci/python_packages/tiny_test_fw/Env.py

+ 2 - 0
tools/ci/python_packages/tiny_test_fw/Env.py

@@ -18,6 +18,7 @@ import threading
 import functools
 
 import netifaces
+import traceback
 
 from . import EnvConfig
 
@@ -190,6 +191,7 @@ class Env(object):
                     dut.print_debug_info()
                 dut.close()
             except Exception as e:
+                traceback.print_exc()
                 dut_close_errors.append(e)
         self.allocated_duts = dict()
         return dut_close_errors