From d8f40df79cdb10da3bf2b5aa699e6ee7d4f826a8 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Tue, 5 Aug 2025 09:56:38 +0800 Subject: [PATCH] ci(system): enable usb-serial-jtag console tests for p4 and c5 --- components/esp_system/test_apps/.build-test-rules.yml | 3 --- .../test_apps/console/pytest_esp_system_console_tests.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/components/esp_system/test_apps/.build-test-rules.yml b/components/esp_system/test_apps/.build-test-rules.yml index 15ddc5d8db..d68503725d 100644 --- a/components/esp_system/test_apps/.build-test-rules.yml +++ b/components/esp_system/test_apps/.build-test-rules.yml @@ -11,9 +11,6 @@ components/esp_system/test_apps/console: - if: CONFIG_NAME == "console_no_vfs" and SOC_USB_SERIAL_JTAG_SUPPORTED != 1 disable_test: - if: CONFIG_NAME == "simple" and IDF_TARGET != "esp32" - - if: IDF_TARGET in ["esp32p4", "esp32c5"] - temporary: true - reason: runner issue, IDFCI-3064 components/esp_system/test_apps/esp_system_unity_tests: disable: diff --git a/components/esp_system/test_apps/console/pytest_esp_system_console_tests.py b/components/esp_system/test_apps/console/pytest_esp_system_console_tests.py index 186637fbba..5c63e09177 100644 --- a/components/esp_system/test_apps/console/pytest_esp_system_console_tests.py +++ b/components/esp_system/test_apps/console/pytest_esp_system_console_tests.py @@ -25,7 +25,6 @@ def test_esp_system_console_no_output_uart(dut: Dut) -> None: @pytest.mark.usb_serial_jtag -@pytest.mark.temp_skip_ci(targets=['esp32p4', 'esp32c5'], reason='IDFCI-3064, temporary lack runner') @idf_parametrize('config', ['serial_jtag_only'], indirect=['config']) @idf_parametrize('flash_port', ['/dev/serial_ports/ttyUSB-esp32'], indirect=['flash_port']) @idf_parametrize('port', ['/dev/serial_ports/ttyACM-esp32'], indirect=['port']) @@ -40,7 +39,6 @@ def test_esp_system_console_only_serial_jtag(dut: Dut) -> None: @pytest.mark.usb_serial_jtag -@pytest.mark.temp_skip_ci(targets=['esp32p4', 'esp32c5'], reason='IDFCI-3064, temporary lack runner') @idf_parametrize('config', ['serial_jtag_only_no_vfs'], indirect=['config']) @idf_parametrize('flash_port', ['/dev/serial_ports/ttyUSB-esp32'], indirect=['flash_port']) @idf_parametrize('port', ['/dev/serial_ports/ttyACM-esp32'], indirect=['port']) @@ -51,7 +49,6 @@ def test_esp_system_console_only_serial_jtag_no_vfs(dut: Dut) -> None: @pytest.mark.usb_serial_jtag -@pytest.mark.temp_skip_ci(targets=['esp32p4', 'esp32c5'], reason='IDFCI-3064, temporary lack runner') @idf_parametrize('config', ['console_no_vfs'], indirect=['config']) @idf_parametrize('flash_port', ['/dev/serial_ports/ttyUSB-esp32'], indirect=['flash_port']) @idf_parametrize('port', ['/dev/serial_ports/ttyACM-esp32'], indirect=['port'])