Files
esp-idf/components/lwip/test_apps/pytest_lwip.py

12 lines
360 B
Python
Raw Normal View History

2025-02-24 10:18:03 +08:00
# SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
2022-09-29 09:17:13 +02:00
# SPDX-License-Identifier: Apache-2.0
import pytest
from pytest_embedded import Dut
2025-02-24 10:18:03 +08:00
from pytest_embedded_idf.utils import idf_parametrize
2022-09-29 09:17:13 +02:00
@pytest.mark.generic
2025-02-24 10:18:03 +08:00
@idf_parametrize('target', ['esp32'], indirect=['target'])
2022-09-29 09:17:13 +02:00
def test_lwip(dut: Dut) -> None:
dut.expect_unity_test_output()