From 26fe24b89031156555bd2c81c8f57750453d93c1 Mon Sep 17 00:00:00 2001 From: gaoxu Date: Tue, 1 Jul 2025 14:46:52 +0800 Subject: [PATCH] ci(emmc): enable emmc example test on ESP32-P4 --- examples/storage/.build-test-rules.yml | 4 ---- examples/storage/emmc/pytest_emmc_example.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/storage/.build-test-rules.yml b/examples/storage/.build-test-rules.yml index ae865e6177..0b4d0f9565 100644 --- a/examples/storage/.build-test-rules.yml +++ b/examples/storage/.build-test-rules.yml @@ -15,10 +15,6 @@ examples/storage/emmc: enable: - if: IDF_TARGET in ["esp32s3", "esp32p4"] reason: only support on esp32s3 and esp32p4 - disable_test: - - if: IDF_TARGET == "esp32p4" - temporary: true - reason: lack of runners examples/storage/partition_api/partition_find: depends_components: diff --git a/examples/storage/emmc/pytest_emmc_example.py b/examples/storage/emmc/pytest_emmc_example.py index 15f5b01981..43c540c7c9 100644 --- a/examples/storage/emmc/pytest_emmc_example.py +++ b/examples/storage/emmc/pytest_emmc_example.py @@ -18,7 +18,7 @@ from pytest_embedded_idf.utils import idf_parametrize ], indirect=True, ) -@idf_parametrize('target', ['esp32s3'], indirect=['target']) +@idf_parametrize('target', ['esp32s3', 'esp32p4'], indirect=['target']) def test_examples_sd_card_sdmmc(dut: Dut) -> None: dut.expect('example: Initializing eMMC', timeout=20) dut.expect('example: Using SDMMC peripheral', timeout=10)