From 8ee25ecfe2f0f35fc27bb7a7bb4bba453940ec35 Mon Sep 17 00:00:00 2001 From: wuzhenghui Date: Wed, 28 Jun 2023 18:03:41 +0800 Subject: [PATCH] ci: increase timeout threshold to solve deepsleep wakestub example ci failure --- examples/system/deep_sleep_wake_stub/example_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/system/deep_sleep_wake_stub/example_test.py b/examples/system/deep_sleep_wake_stub/example_test.py index 8e54fdc2bb..29dc01b116 100644 --- a/examples/system/deep_sleep_wake_stub/example_test.py +++ b/examples/system/deep_sleep_wake_stub/example_test.py @@ -21,7 +21,7 @@ def test_deep_sleep_wake_stub(env, extra_data): # type: (tiny_test_fw.Env, typi start_sleep = time.time() print('Waiting for wakeup...') - dut.expect('wake stub: going to deep sleep') + dut.expect('wake stub: going to deep sleep', timeout=15) sleep_time = time.time() - start_sleep print('Host measured sleep time at {:.2f}s'.format(sleep_time))