From 0309e0eb037c0524dcb2fc7f260b7e1eb8291b08 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 22 Sep 2022 13:32:41 +0200 Subject: [PATCH] ci/esp-netif: Update build/test rules for netif tests --- components/esp_netif/.build-test-rules.yml | 6 +++--- .../test_apps/test_app_esp_netif/pytest_esp_netif.py | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/components/esp_netif/.build-test-rules.yml b/components/esp_netif/.build-test-rules.yml index 841108a8c9..a6a408dc20 100644 --- a/components/esp_netif/.build-test-rules.yml +++ b/components/esp_netif/.build-test-rules.yml @@ -6,9 +6,9 @@ components/esp_netif/test_apps/test_app_esp_netif: temporary: true reason: target esp32c6 is not supported yet disable_test: - - if: IDF_TARGET != "esp32s2" - temporary: true - reason: lack of runners + - if: IDF_TARGET not in ["esp32s2", "esp32c3"] + temporary: false + reason: Not needed to test on all targets (chosen two, one for each architecture) components/esp_netif/test_apps/test_app_vfs_l2tap: disable: diff --git a/components/esp_netif/test_apps/test_app_esp_netif/pytest_esp_netif.py b/components/esp_netif/test_apps/test_app_esp_netif/pytest_esp_netif.py index bdc35cc9d7..841d825360 100644 --- a/components/esp_netif/test_apps/test_app_esp_netif/pytest_esp_netif.py +++ b/components/esp_netif/test_apps/test_app_esp_netif/pytest_esp_netif.py @@ -6,6 +6,7 @@ from pytest_embedded import Dut @pytest.mark.esp32s2 +@pytest.mark.esp32c3 @pytest.mark.generic def test_esp_netif(dut: Dut) -> None: dut.expect_unity_test_output()