mirror of
https://github.com/espressif/esp-mqtt.git
synced 2026-08-03 20:14:15 +02:00
71534b1c43
Ths adopts gitlab components for better maintanance of CI. Adds target tests
12 lines
380 B
Python
12 lines
380 B
Python
# SPDX-FileCopyrightText: 2023-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.eth_ip101
|
|
@idf_parametrize("target", ["esp32"], indirect=["target"])
|
|
def test_mqtt5_client(dut: Dut) -> None:
|
|
dut.expect_unity_test_output()
|