From 4c2b9909c48aa3bb33e45b85ef6e65186e01f8c2 Mon Sep 17 00:00:00 2001 From: Armando Date: Wed, 20 Nov 2024 18:48:20 +0800 Subject: [PATCH] ci(flash): added 120M supported runner --- components/esp_hw_support/test_apps/mspi/pytest_flash_psram.py | 2 +- tools/ci/idf_pytest/constants.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/esp_hw_support/test_apps/mspi/pytest_flash_psram.py b/components/esp_hw_support/test_apps/mspi/pytest_flash_psram.py index 7132d7f0b6..6704041ebb 100644 --- a/components/esp_hw_support/test_apps/mspi/pytest_flash_psram.py +++ b/components/esp_hw_support/test_apps/mspi/pytest_flash_psram.py @@ -39,7 +39,7 @@ def test_flash4_psram4(dut: IdfDut) -> None: @pytest.mark.esp32p4 -@pytest.mark.generic +@pytest.mark.flash_120m @pytest.mark.parametrize( 'config', [ diff --git a/tools/ci/idf_pytest/constants.py b/tools/ci/idf_pytest/constants.py index dadb57fd8d..1aa138b87b 100644 --- a/tools/ci/idf_pytest/constants.py +++ b/tools/ci/idf_pytest/constants.py @@ -94,6 +94,7 @@ ENV_MARKERS = { 'MSPI_F8R8': 'runner with Octal Flash and Octal PSRAM', 'MSPI_F4R8': 'runner with Quad Flash and Octal PSRAM', 'MSPI_F4R4': 'runner with Quad Flash and Quad PSRAM', + 'flash_120m': 'runner with 120M supported Flash', 'jtag': 'runner where the chip is accessible through JTAG as well', 'usb_serial_jtag': 'runner where the chip is accessible through builtin JTAG as well', 'adc': 'ADC related tests should run on adc runners',