Files
esp-idf/components/esp_phy/test_apps/phy_iram/pytest_phy.py
T
2026-03-10 16:49:21 +08:00

13 lines
386 B
Python

# SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Unlicense OR CC0-1.0
import pytest
from pytest_embedded import Dut
from pytest_embedded_idf.utils import idf_parametrize
@pytest.mark.generic
@pytest.mark.eco5
@idf_parametrize('target', ['esp32h2'], indirect=['target'])
def test_phy(dut: Dut) -> None:
dut.run_all_single_board_cases()