From dac64725af80f2a2191076735067cb067e2590de Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Tue, 4 Apr 2023 14:36:59 +0800 Subject: [PATCH] esp_system, heap: increase host test timeout for CI --- .../esp_system/test_apps/linux_apis/pytest_esp_system_linux.py | 2 +- components/heap/test_apps/host_test_linux/pytest_heap_linux.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_system/test_apps/linux_apis/pytest_esp_system_linux.py b/components/esp_system/test_apps/linux_apis/pytest_esp_system_linux.py index 7b065ec65e..d398ee7de9 100644 --- a/components/esp_system/test_apps/linux_apis/pytest_esp_system_linux.py +++ b/components/esp_system/test_apps/linux_apis/pytest_esp_system_linux.py @@ -9,4 +9,4 @@ from pytest_embedded import Dut def test_esp_system_linux(dut: Dut) -> None: dut.expect_exact('Press ENTER to see the list of tests.') dut.write('*') - dut.expect_unity_test_output(timeout=10) + dut.expect_unity_test_output(timeout=60) diff --git a/components/heap/test_apps/host_test_linux/pytest_heap_linux.py b/components/heap/test_apps/host_test_linux/pytest_heap_linux.py index 6ae0bf382f..44dc9bbdac 100644 --- a/components/heap/test_apps/host_test_linux/pytest_heap_linux.py +++ b/components/heap/test_apps/host_test_linux/pytest_heap_linux.py @@ -9,4 +9,4 @@ from pytest_embedded import Dut def test_heap_linux(dut: Dut) -> None: dut.expect_exact('Press ENTER to see the list of tests.') dut.write('*') - dut.expect_unity_test_output(timeout=10) + dut.expect_unity_test_output(timeout=60)