mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-20 00:09:11 +00:00
ci(c2/c3): add major eco version tests
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
import logging
|
||||
|
||||
@@ -74,3 +74,30 @@ 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.esp32c2eco4
|
||||
@pytest.mark.parametrize(
|
||||
'config, baud, target',
|
||||
[
|
||||
('c2eco4_xtal26m', '74880', 'esp32c2'),
|
||||
],
|
||||
indirect=True,
|
||||
)
|
||||
def test_wifi_power_save_esp32c2eco4_26mhz(dut: Dut) -> None:
|
||||
_run_test(dut)
|
||||
|
||||
|
||||
@pytest.mark.wifi_ap
|
||||
@pytest.mark.esp32c3eco7
|
||||
@pytest.mark.parametrize(
|
||||
'config, target',
|
||||
[
|
||||
('c3eco7','esp32c3')
|
||||
],
|
||||
indirect=True,
|
||||
)
|
||||
def test_wifi_power_save_esp32c3eco7(dut: Dut) -> None:
|
||||
_run_test(dut)
|
||||
|
Reference in New Issue
Block a user