fix(storage/vfs): Fixed failing test cases in test_apps

This commit is contained in:
radek.tandler
2024-12-20 19:07:08 +01:00
parent 0c69545f30
commit cacc13873d
4 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,9 @@
components/nvs_flash/host_test:
enable:
- if: IDF_TARGET == "linux"
components/nvs_flash/test_apps:
disable_test:
- if: IDF_TARGET not in ["esp32", "esp32c3"]
temporary: true
reason: NVS flash test on one Xtensa and one RISCV target is enough

View File

@ -0,0 +1,5 @@
components/vfs/test_apps:
disable_test:
- if: IDF_TARGET not in ["esp32", "esp32s3", "esp32c2", "esp32c3", "esp32c6", "esp32h2"]
temporary: true
reason: Only run VFS tests on a subset of targets

View File

@ -1,6 +1,5 @@
# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import pytest
from pytest_embedded import Dut

View File

@ -7,3 +7,5 @@ CONFIG_PARTITION_TABLE_CUSTOM=y
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
CONFIG_ESP_TASK_WDT_INIT=n
CONFIG_VFS_MAX_COUNT=10