ci/esp-netif: Update build/test rules for netif tests

This commit is contained in:
David Cermak
2022-09-22 13:32:41 +02:00
committed by David Čermák
parent f3012849e8
commit 0309e0eb03
2 changed files with 4 additions and 3 deletions

View File

@@ -6,9 +6,9 @@ components/esp_netif/test_apps/test_app_esp_netif:
temporary: true temporary: true
reason: target esp32c6 is not supported yet reason: target esp32c6 is not supported yet
disable_test: disable_test:
- if: IDF_TARGET != "esp32s2" - if: IDF_TARGET not in ["esp32s2", "esp32c3"]
temporary: true temporary: false
reason: lack of runners reason: Not needed to test on all targets (chosen two, one for each architecture)
components/esp_netif/test_apps/test_app_vfs_l2tap: components/esp_netif/test_apps/test_app_vfs_l2tap:
disable: disable:

View File

@@ -6,6 +6,7 @@ from pytest_embedded import Dut
@pytest.mark.esp32s2 @pytest.mark.esp32s2
@pytest.mark.esp32c3
@pytest.mark.generic @pytest.mark.generic
def test_esp_netif(dut: Dut) -> None: def test_esp_netif(dut: Dut) -> None:
dut.expect_unity_test_output() dut.expect_unity_test_output()