mirror of
https://github.com/espressif/esp-idf.git
synced 2026-05-28 16:46:31 +03:00
Merge branch 'bugfix/spiffs-example-pytest-timeout-idfci-10763' into 'master'
fix(examples): extend SPIFFS example pytest timeout for slow CI format Closes IDFCI-10763 See merge request espressif/esp-idf!48080
This commit is contained in:
@@ -21,5 +21,7 @@ def test_examples_spiffs(dut: Dut) -> None:
|
||||
rb'example: SPIFFS unmounted',
|
||||
)
|
||||
|
||||
for msg in message_list:
|
||||
dut.expect(re.compile(msg), timeout=60)
|
||||
# First boot format + remount can exceed 60s on CI UART runners; keep startup fail-fast.
|
||||
dut.expect(re.compile(message_list[0]), timeout=30)
|
||||
for msg in message_list[1:]:
|
||||
dut.expect(re.compile(msg), timeout=120)
|
||||
|
||||
Reference in New Issue
Block a user