diff --git a/.gitlab/ci/host-test.yml b/.gitlab/ci/host-test.yml index 286c9c621e..e5c5aa737e 100644 --- a/.gitlab/ci/host-test.yml +++ b/.gitlab/ci/host-test.yml @@ -312,6 +312,7 @@ test_pytest_qemu: reports: junit: XUNIT_RESULT.xml expire_in: 1 week + allow_failure: true # IDFCI-1752 parallel: matrix: - IDF_TARGET: [esp32, esp32c3] diff --git a/components/bootloader_support/test_apps/bootloader_support/pytest_bootloader_support.py b/components/bootloader_support/test_apps/bootloader_support/pytest_bootloader_support.py index 64a02eb523..8082cac3f2 100644 --- a/components/bootloader_support/test_apps/bootloader_support/pytest_bootloader_support.py +++ b/components/bootloader_support/test_apps/bootloader_support/pytest_bootloader_support.py @@ -7,7 +7,6 @@ from pytest_embedded import Dut @pytest.mark.generic @pytest.mark.supported_targets -@pytest.mark.nightly_run def test_bootloader_support(dut: Dut) -> None: dut.run_all_single_board_cases() diff --git a/components/console/test_apps/console/pytest_console.py b/components/console/test_apps/console/pytest_console.py index c191638654..796fa9a8e2 100644 --- a/components/console/test_apps/console/pytest_console.py +++ b/components/console/test_apps/console/pytest_console.py @@ -7,14 +7,12 @@ from pytest_embedded import Dut @pytest.mark.generic @pytest.mark.supported_targets -@pytest.mark.nightly_run def test_console(dut: Dut) -> None: dut.run_all_single_board_cases() @pytest.mark.generic @pytest.mark.supported_targets -@pytest.mark.nightly_run def test_console_repl(dut: Dut) -> None: dut.expect_exact('Press ENTER to see the list of tests') dut.write('"esp console repl test"') diff --git a/components/esp_event/test_apps/pytest_esp_event.py b/components/esp_event/test_apps/pytest_esp_event.py index d907407926..d511dbf39e 100644 --- a/components/esp_event/test_apps/pytest_esp_event.py +++ b/components/esp_event/test_apps/pytest_esp_event.py @@ -9,7 +9,6 @@ from pytest_embedded import Dut @pytest.mark.esp32s2 @pytest.mark.esp32c3 @pytest.mark.generic -@pytest.mark.nightly_run def test_esp_event(dut: Dut) -> None: dut.run_all_single_board_cases() diff --git a/components/esp_ringbuf/test_apps/pytest_esp_ringbuf.py b/components/esp_ringbuf/test_apps/pytest_esp_ringbuf.py index 31c6c5ac2d..f82f19f722 100644 --- a/components/esp_ringbuf/test_apps/pytest_esp_ringbuf.py +++ b/components/esp_ringbuf/test_apps/pytest_esp_ringbuf.py @@ -9,7 +9,6 @@ from pytest_embedded import Dut @pytest.mark.esp32s2 @pytest.mark.esp32c3 @pytest.mark.generic -@pytest.mark.nightly_run @pytest.mark.parametrize( 'config', [ diff --git a/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py b/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py index 6d2f7df723..2fa5f1cc7d 100644 --- a/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py +++ b/components/esp_rom/test_apps/rom_tests/pytest_esp_rom.py @@ -11,7 +11,6 @@ from pytest_embedded import Dut @pytest.mark.esp32c6 @pytest.mark.esp32h2 @pytest.mark.generic -@pytest.mark.nightly_run def test_esp_rom(dut: Dut) -> None: dut.run_all_single_board_cases()