fix: pytest did not recognize test cases

This commit is contained in:
luaijun
2025-04-18 11:15:12 +08:00
parent a4401e5256
commit cd7d6f1c12
10 changed files with 42 additions and 52 deletions

View File

@@ -76,14 +76,13 @@ def test_wifi_power_save_esp32c2_26mhz(dut: Dut) -> None:
_run_test(dut)
@pytest.mark.wifi_ap
@pytest.mark.wifi_ap_eco
@pytest.mark.xtal_26mhz
@pytest.mark.esp32c2
@pytest.mark.esp32c2eco4
@pytest.mark.parametrize(
'config, baud',
[
('c2eco4_xtal26m', '74880',),
('c2eco4_xtal26m', '74880'),
],
indirect=True,
)
@@ -91,13 +90,12 @@ def test_wifi_power_save_esp32c2eco4_26mhz(dut: Dut) -> None:
_run_test(dut)
@pytest.mark.wifi_ap
@pytest.mark.wifi_ap_eco
@pytest.mark.esp32c3
@pytest.mark.esp32c3eco7
@pytest.mark.parametrize(
'config',
[
('c3eco7',)
('c3eco7')
],
indirect=True,
)