feat(storage): update config for app tests

This commit is contained in:
Tomáš Rohlínek
2023-10-06 11:35:44 +02:00
committed by Martin Vychodil
parent a36d8bc742
commit aca0d3ad17
31 changed files with 92 additions and 158 deletions

View File

@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Unlicense OR CC0-1.0
import os
@@ -24,7 +24,6 @@ def prepare() -> t.Generator[None, None, None]:
shutil.rmtree(TEMP_DIR, ignore_errors=True)
@pytest.mark.esp32
@pytest.mark.jtag
@pytest.mark.parametrize(
'embedded_services, no_gdb, openocd_cli_args',
@@ -35,6 +34,30 @@ def prepare() -> t.Generator[None, None, None]:
f'-c \'set ESP_SEMIHOST_BASEDIR "{TEMP_DIR}"\' -f board/esp32-wrover-kit-3.3v.cfg',
marks=[pytest.mark.esp32],
),
# pytest.param(
# 'esp,idf,jtag',
# 'y',
# f'-c \'set ESP_SEMIHOST_BASEDIR "{TEMP_DIR}"\' -f board/esp32c2-ftdi.cfg',
# marks=[pytest.mark.esp32c2],
# ),
# pytest.param(
# 'esp,idf,jtag',
# 'y',
# f'-c \'set ESP_SEMIHOST_BASEDIR "{TEMP_DIR}"\' -f board/esp32s2-kaluga-1.cfg',
# marks=[pytest.mark.esp32c3],
# ),
# pytest.param(
# 'esp,idf,jtag',
# 'y',
# f'-c \'set ESP_SEMIHOST_BASEDIR "{TEMP_DIR}"\' -f board/esp32s2-kaluga-1.cfg',
# marks=[pytest.mark.esp32s2],
# ),
# pytest.param(
# 'esp,idf,jtag',
# 'y',
# f'-c \'set ESP_SEMIHOST_BASEDIR "{TEMP_DIR}"\' -f board/esp32s2-kaluga-1.cfg',
# marks=[pytest.mark.esp32s3],
# ),
],
indirect=True,
)