ci: remove redundent ci configs for chip support and network components

CI would build psram config test apps even for target with no psram.
This commit is contained in:
Marius Vikhammer
2023-04-25 14:40:53 +08:00
parent 8be8a1cd22
commit bca026455c
15 changed files with 59 additions and 51 deletions

View File

@@ -4,9 +4,13 @@
import pytest
from pytest_embedded import Dut
CONFIGS = [
pytest.param('default', marks=[pytest.mark.esp32, pytest.mark.esp32c3]),
pytest.param('psram_esp32', marks=[pytest.mark.esp32]),
]
@pytest.mark.esp32
@pytest.mark.esp32c3
@pytest.mark.generic
@pytest.mark.parametrize('config', CONFIGS, indirect=True)
def test_tcp_transport_client(dut: Dut) -> None:
dut.expect_unity_test_output()

View File

@@ -1,3 +1,4 @@
CONFIG_IDF_TARGET="esp32"
CONFIG_UNITY_ENABLE_FIXTURE=y
CONFIG_SPIRAM=y
CONFIG_ESP_INT_WDT_TIMEOUT_MS=800