Merge branch 'feature/nvs_flash_add_test_apps_dependecies' into 'master'

feat(storage): add dependencies to storage related test apps

Closes IDF-8398, IDF-8397, and IDF-8835

See merge request espressif/esp-idf!27439
This commit is contained in:
Martin Vychodil
2024-01-04 03:29:05 +08:00
11 changed files with 83 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
components/vfs/test_apps:
disable_test:
- if: IDF_TARGET not in ["esp32", "esp32c2", "esp32c3", "esp32c6", "esp32h2", "esp32s3"]
temporary: true
reason: lack of runners
depends_components:
- vfs
- fatfs
- spiffs
- console
- driver

View File

@@ -9,7 +9,6 @@ from pytest_embedded import Dut
@pytest.mark.esp32c3
@pytest.mark.esp32c6
@pytest.mark.esp32h2
@pytest.mark.generic
@pytest.mark.parametrize('config', [
'default', 'iram',
], indirect=True)
@@ -18,8 +17,7 @@ def test_vfs_default(dut: Dut) -> None:
@pytest.mark.esp32
@pytest.mark.esp32s2
@pytest.mark.generic
@pytest.mark.esp32c3
@pytest.mark.parametrize('config', [
'ccomp',
], indirect=True)