ci(c2/c3): add major eco version tests(v5.2)

This commit is contained in:
luaijun
2025-03-19 20:16:21 +08:00
parent 34a92965d0
commit a4401e5256
29 changed files with 459 additions and 16 deletions

View File

@@ -1,6 +1,5 @@
# SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
import logging
import pexpect
@@ -75,3 +74,32 @@ def test_wifi_power_save_pd_top(dut: Dut) -> None:
)
def test_wifi_power_save_esp32c2_26mhz(dut: Dut) -> None:
_run_test(dut)
@pytest.mark.wifi_ap
@pytest.mark.xtal_26mhz
@pytest.mark.esp32c2
@pytest.mark.esp32c2eco4
@pytest.mark.parametrize(
'config, baud',
[
('c2eco4_xtal26m', '74880',),
],
indirect=True,
)
def test_wifi_power_save_esp32c2eco4_26mhz(dut: Dut) -> None:
_run_test(dut)
@pytest.mark.wifi_ap
@pytest.mark.esp32c3
@pytest.mark.esp32c3eco7
@pytest.mark.parametrize(
'config',
[
('c3eco7',)
],
indirect=True,
)
def test_wifi_power_save_esp32c3eco7(dut: Dut) -> None:
_run_test(dut)