From a98923bc85045920cb7cfa0b86e4ce2874d070bb Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Wed, 10 Jan 2024 15:37:20 +0100 Subject: [PATCH] test: temp disable ip101 test cases --- components/esp_eth/test_apps/pytest_esp_eth.py | 1 + examples/protocols/l2tap/pytest_example_l2tap_echo.py | 1 + 2 files changed, 2 insertions(+) diff --git a/components/esp_eth/test_apps/pytest_esp_eth.py b/components/esp_eth/test_apps/pytest_esp_eth.py index 921636f441..2b49b9c6ad 100644 --- a/components/esp_eth/test_apps/pytest_esp_eth.py +++ b/components/esp_eth/test_apps/pytest_esp_eth.py @@ -204,6 +204,7 @@ def test_esp_emac_hal(dut: IdfDut) -> None: @pytest.mark.esp32 @pytest.mark.ip101 +@pytest.mark.temp_skip_ci(targets=['esp32'], reason='runner under maintenance') @pytest.mark.parametrize('config', [ 'default_ip101', ], indirect=True) diff --git a/examples/protocols/l2tap/pytest_example_l2tap_echo.py b/examples/protocols/l2tap/pytest_example_l2tap_echo.py index 7bbf205931..074d9ee383 100644 --- a/examples/protocols/l2tap/pytest_example_l2tap_echo.py +++ b/examples/protocols/l2tap/pytest_example_l2tap_echo.py @@ -101,6 +101,7 @@ def actual_test(dut: Dut) -> None: @pytest.mark.esp32 # internally tested using ESP32 with IP101 but may support all targets with SPI Ethernet @pytest.mark.ip101 +@pytest.mark.temp_skip_ci(targets=['esp32'], reason='runner under maintenance') @pytest.mark.flaky(reruns=3, reruns_delay=5) def test_esp_netif_l2tap_example(dut: Dut) -> None: actual_test(dut)