From 8dd59c948ff08ff7b937df90e048f0597b77166e Mon Sep 17 00:00:00 2001 From: Harshit Malpani Date: Fri, 1 Jul 2022 12:01:46 +0530 Subject: [PATCH] Increase timeout in advanced OTA example test --- examples/system/ota/advanced_https_ota/pytest_advanced_ota.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py b/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py index dacb3da724..7fb817f829 100644 --- a/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py +++ b/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py @@ -125,7 +125,7 @@ def test_examples_protocol_advanced_https_ota_example(dut: Dut) -> None: thread1.daemon = True thread1.start() for i in range(iterations): - dut.expect('Loaded app from partition at offset', timeout=30) + dut.expect('Loaded app from partition at offset', timeout=60) try: ip_address = dut.expect(r' (sta|eth) ip: ([^,]+),', timeout=30) print('Connected to AP with IP: {}'.format(ip_address))