2023-01-19 14:47:44 +08:00
|
|
|
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
2022-03-03 16:05:28 +08:00
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
from pytest_embedded_idf.dut import IdfDut
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.supported_targets
|
2024-01-02 10:21:45 +08:00
|
|
|
@pytest.mark.temp_skip_ci(targets=['esp32h2', 'esp32p4'], reason='h2/p4 does not support wifi')
|
2022-03-03 16:05:28 +08:00
|
|
|
@pytest.mark.generic
|
2022-03-11 18:34:44 +08:00
|
|
|
def test_i2c_wifi_startup(dut: IdfDut) -> None:
|
2022-03-03 16:05:28 +08:00
|
|
|
dut.expect_exact('I2C-WIFI test success')
|