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
This commit is contained in:
Jakob Hasse 2023-02-13 12:19:15 +08:00
parent a75a36f8c2
commit bed81f450d
2 changed files with 2 additions and 2 deletions

View File

@ -7,4 +7,4 @@ from pytest_embedded import Dut
@pytest.mark.linux @pytest.mark.linux
@pytest.mark.host_test @pytest.mark.host_test
def test_nvs_host_linux(dut: Dut) -> None: def test_nvs_host_linux(dut: Dut) -> None:
dut.expect_exact('All tests passed', timeout=5) dut.expect_exact('All tests passed', timeout=60)

View File

@ -7,4 +7,4 @@ from pytest_embedded import Dut
@pytest.mark.linux @pytest.mark.linux
@pytest.mark.host_test @pytest.mark.host_test
def test_nvs_page_linux(dut: Dut) -> None: def test_nvs_page_linux(dut: Dut) -> None:
dut.expect_unity_test_output(timeout=10) dut.expect_unity_test_output(timeout=120)