From 1ca937c520e03cb93d76bda3c657092bd81808ce Mon Sep 17 00:00:00 2001 From: Chen Yudong Date: Mon, 22 May 2023 16:33:01 +0800 Subject: [PATCH] CI: fix multi dev case tester --- tools/ci/idf_unity_tester.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ci/idf_unity_tester.py b/tools/ci/idf_unity_tester.py index bc6685fc06..3038dea02e 100644 --- a/tools/ci/idf_unity_tester.py +++ b/tools/ci/idf_unity_tester.py @@ -334,6 +334,8 @@ class MultiDevCaseTester(BaseTester): if reset: for dev_res in self.group: dev_res.dut.serial.hard_reset() + # delay a few seconds to make sure the duts are ready. + time.sleep(5) for sub_case in case.subcases: if isinstance(sub_case['index'], str): index = int(sub_case['index'], 10)