ci: test i2s, touch, ana_cmpr with CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=0

This commit is contained in:
laokaiyao
2025-05-12 11:33:56 +08:00
committed by Kevin (Lao Kaiyao)
parent c6bc55f91e
commit 16cc8f974d
11 changed files with 39 additions and 7 deletions

View File

@@ -16,8 +16,26 @@ from pytest_embedded_idf.utils import idf_parametrize
)
@idf_parametrize(
'target',
['esp32', 'esp32s2', 'esp32c3', 'esp32c5', 'esp32c6', 'esp32s3', 'esp32h2', 'esp32p4', 'esp32c61'],
['esp32', 'esp32s2', 'esp32c3', 'esp32c5', 'esp32c6', 'esp32h2', 'esp32p4', 'esp32c61'],
indirect=['target'],
)
def test_i2s(dut: Dut) -> None:
dut.run_all_single_board_cases()
@pytest.mark.octal_psram
@pytest.mark.parametrize(
'config',
[
'iram_safe',
'release',
],
indirect=True,
)
@idf_parametrize(
'target',
['esp32s3'],
indirect=['target'],
)
def test_i2s_psram(dut: Dut) -> None:
dut.run_all_single_board_cases()