From bed81f450da5e3e5196ddf5f7cb3aefd95bd41e3 Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Mon, 13 Feb 2023 12:19:15 +0800 Subject: [PATCH] ci(nvs_flash): Increase timeout of nvs_page_test * nvs_page_test runs into timeout in CI. According to log, test ran run around halfway, so increasing from 10 to 90 seconds. * Also increased timeout of nvs_host_test, just to be sure --- .../nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py | 2 +- .../nvs_flash/host_test/nvs_page_test/pytest_nvs_page_linux.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py b/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py index 2f1bdb807b..bc3828ada2 100644 --- a/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py +++ b/components/nvs_flash/host_test/nvs_host_test/pytest_nvs_host_linux.py @@ -7,4 +7,4 @@ from pytest_embedded import Dut @pytest.mark.linux @pytest.mark.host_test def test_nvs_host_linux(dut: Dut) -> None: - dut.expect_exact('All tests passed', timeout=5) + dut.expect_exact('All tests passed', timeout=60) diff --git a/components/nvs_flash/host_test/nvs_page_test/pytest_nvs_page_linux.py b/components/nvs_flash/host_test/nvs_page_test/pytest_nvs_page_linux.py index 811cef7ccf..dc8b09d2a5 100644 --- a/components/nvs_flash/host_test/nvs_page_test/pytest_nvs_page_linux.py +++ b/components/nvs_flash/host_test/nvs_page_test/pytest_nvs_page_linux.py @@ -7,4 +7,4 @@ from pytest_embedded import Dut @pytest.mark.linux @pytest.mark.host_test def test_nvs_page_linux(dut: Dut) -> None: - dut.expect_unity_test_output(timeout=10) + dut.expect_unity_test_output(timeout=120)