Files
esp-idf/components/esp_driver_i2s/test_apps/i2s/pytest_i2s.py

26 lines
528 B
Python
Raw Normal View History

2024-09-13 21:56:02 +08:00
# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
2022-04-07 15:32:46 +08:00
# SPDX-License-Identifier: Apache-2.0
import pytest
from pytest_embedded import Dut
@pytest.mark.esp32
@pytest.mark.esp32s2
@pytest.mark.esp32c3
2024-09-14 18:27:27 +08:00
@pytest.mark.esp32c5
2022-11-14 16:28:00 +08:00
@pytest.mark.esp32c6
2022-04-07 15:32:46 +08:00
@pytest.mark.esp32s3
@pytest.mark.esp32h2
@pytest.mark.esp32p4
2022-04-07 15:32:46 +08:00
@pytest.mark.generic
@pytest.mark.parametrize(
'config',
[
'iram_safe',
'release',
],
indirect=True,
)
def test_i2s(dut: Dut) -> None:
dut.run_all_single_board_cases()