Merge branch 'ci/improve-tests' into 'master'

tests: change wifi tests expect timeout to 60

See merge request espressif/esp-idf!42888
This commit is contained in:
Fu Hanxi
2025-11-03 03:45:57 +01:00
20 changed files with 167 additions and 166 deletions

View File

@@ -221,7 +221,7 @@ def test_tee_cli_secure_ota_wifi(dut: Dut) -> None:
# Fetch the DUT IP address
try:
ip_address = dut.expect(r'got ip:(\d+\.\d+\.\d+\.\d+)[^\d]', timeout=30)[1].decode()
ip_address = dut.expect(r'got ip:(\d+\.\d+\.\d+\.\d+)[^\d]', timeout=60)[1].decode()
print(f'Connected to AP/Ethernet with IP: {ip_address}')
except pexpect.exceptions.TIMEOUT:
raise ValueError('ENV_TEST_FAILURE: Cannot connect to AP')