ci(change): disable esp32c61 tests

This commit is contained in:
Erhan Kurubas
2025-06-04 11:06:14 +02:00
parent 28980b62c9
commit f91a687bae
3 changed files with 3 additions and 4 deletions

View File

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

View File

@@ -165,7 +165,6 @@ def test_examples_app_trace_basic(dut: IdfDut) -> None:
@pytest.mark.esp32s3 @pytest.mark.esp32s3
@pytest.mark.esp32c3 @pytest.mark.esp32c3
@pytest.mark.esp32c6 @pytest.mark.esp32c6
@pytest.mark.esp32c61
@pytest.mark.esp32h2 @pytest.mark.esp32h2
@pytest.mark.usb_serial_jtag @pytest.mark.usb_serial_jtag
def test_examples_app_trace_basic_usj(dut: IdfDut) -> None: 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 @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: def test_gcov_usj(dut: IdfDut) -> None:
_test_gcov(dut) _test_gcov(dut)