Merge branch 'disable_esp32c61_test_v5.4' into 'release/v5.4'

ci(change): disable esp32c61 tests

See merge request espressif/esp-idf!39658
This commit is contained in:
Alexey Gerenkov
2025-06-30 15:40:58 +08:00
3 changed files with 3 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
examples/system/app_trace_basic:
disable_test:
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
- if: IDF_TARGET in ["esp32p4", "esp32c5", "esp32c61"]
temporary: true
reason: lack of runners.
@@ -86,7 +86,7 @@ examples/system/freertos/real_time_stats:
examples/system/gcov:
disable_test:
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
- if: IDF_TARGET in ["esp32p4", "esp32c5", "esp32c61"]
temporary: true
reason: lack of runners
- if: IDF_TARGET == "esp32s3"

View File

@@ -165,7 +165,6 @@ def test_examples_app_trace_basic(dut: IdfDut) -> None:
@pytest.mark.esp32s3
@pytest.mark.esp32c3
@pytest.mark.esp32c6
@pytest.mark.esp32c61
@pytest.mark.esp32h2
@pytest.mark.usb_serial_jtag
def test_examples_app_trace_basic_usj(dut: IdfDut) -> None:

View File

@@ -188,6 +188,6 @@ def test_gcov(dut: IdfDut) -> None:
@pytest.mark.usb_serial_jtag
@idf_parametrize('target', ['esp32c3', 'esp32c6', 'esp32c61', 'esp32h2'], indirect=['target'])
@idf_parametrize('target', ['esp32c3', 'esp32c6', 'esp32h2'], indirect=['target'])
def test_gcov_usj(dut: IdfDut) -> None:
_test_gcov(dut)