blob: 74b0a76afc77fff82fd1aeb88cefaaf5bbe142bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import pytest
from pytest_embedded import Dut
@pytest.mark.generic
@pytest.mark.esp32
@pytest.mark.esp32c3
def test_bt(dut: Dut) -> None:
dut.run_all_single_board_cases()
|