esp-idf/components/esp_driver_ppa/test_apps/pytest_ppa.py

18 lines
354 B
Python
Raw Normal View History

# SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import pytest
from pytest_embedded import Dut
@pytest.mark.esp32p4
@pytest.mark.generic
@pytest.mark.parametrize(
'config',
[
'release',
],
indirect=True,
)
def test_ppa(dut: Dut) -> None:
dut.run_all_single_board_cases()