fix(esp32c5): Remove esp32c5 from bypass check test target list

This commit is contained in:
C.S.M
2025-12-08 13:32:14 +08:00
parent 52473e8638
commit 63432d6f9b
2 changed files with 1 additions and 2 deletions

View File

@@ -12,7 +12,6 @@
bypass_check_test_targets:
- esp32h21
- esp32h4
- esp32c5
- esp32s31
#

View File

@@ -8,7 +8,7 @@ from pytest_embedded_idf.utils import idf_parametrize
@pytest.mark.generic
@idf_parametrize('target', ['esp32c6', 'esp32p4'], indirect=['target'])
@idf_parametrize('target', ['esp32c6', 'esp32p4', 'esp32c5'], indirect=['target'])
def test_lp_core_pcnt(dut: Dut) -> None:
res = dut.expect(r'ULP will wake up processor after every (\d+) pulses')
wakeup_limit = res.group(1).decode('utf-8')