diff --git a/examples/system/.build-test-rules.yml b/examples/system/.build-test-rules.yml index a1993e0256c..569a8ed3f21 100644 --- a/examples/system/.build-test-rules.yml +++ b/examples/system/.build-test-rules.yml @@ -345,6 +345,10 @@ examples/system/ulp/lp_core/build_system: examples/system/ulp/lp_core/debugging: enable: - if: SOC_LP_CORE_SUPPORTED == 1 + disable_test: + - if: IDF_TARGET in ["esp32c5", "esp32c6", "esp32p4"] + temporary: true + reason: unstable test depends_components: - *common_components - ulp diff --git a/examples/system/ulp/lp_core/debugging/pytest_lp_core_debugging.py b/examples/system/ulp/lp_core/debugging/pytest_lp_core_debugging.py index b7decfa455b..43b5248ae81 100644 --- a/examples/system/ulp/lp_core/debugging/pytest_lp_core_debugging.py +++ b/examples/system/ulp/lp_core/debugging/pytest_lp_core_debugging.py @@ -14,6 +14,7 @@ if typing.TYPE_CHECKING: @pytest.mark.usb_serial_jtag +@pytest.mark.temp_skip_ci(targets=['esp32c5', 'esp32c6', 'esp32p4'], reason='unstable test') @idf_parametrize('target', ['esp32c5', 'esp32c6', 'esp32p4'], indirect=['target']) @idf_parametrize('port', ['/dev/serial_ports/ttyUSB-esp32'], indirect=['port']) def test_lp_core_debugging(openocd_dut: 'OpenOCD', dut: IdfDut) -> None: