mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 11:03:11 +00:00
13 lines
396 B
Python
13 lines
396 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.esp32h2_rev1_2
|
|
@idf_parametrize('target', ['esp32h2'], indirect=['target'])
|
|
def test_phy(dut: Dut) -> None:
|
|
dut.run_all_single_board_cases()
|