fix(ci): re-enabled ESP32P4 tests on different HW vers

This commit is contained in:
Ondrej Kosta
2025-12-11 13:24:31 +01:00
parent 7ac308c3d4
commit 498989ea10
20 changed files with 139 additions and 71 deletions
@@ -11,7 +11,6 @@ import netifaces
import pytest
from common_test_methods import get_host_ip4_by_dest_ip
from pytest_embedded import Dut
from pytest_embedded_idf.utils import idf_parametrize
PORT = 3333
IPV6_REGEX = (
@@ -156,10 +155,12 @@ def test_examples_udp_multicast_proto(dut: Dut, ip_version: str = 'ipv4', nic: s
sock.close()
@pytest.mark.eth_ip101
@idf_parametrize(
'target',
['esp32', 'esp32p4'],
@pytest.mark.parametrize(
'config, target',
[
pytest.param('default_ip101', 'esp32', marks=[pytest.mark.eth_ip101]),
pytest.param('default_ip101_esp32p4', 'esp32p4', marks=[pytest.mark.eth_ip101]),
],
indirect=['target'],
)
def test_examples_udp_multicast(dut: Dut) -> None: