mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
tools/test_apps/storage/partition_table_readonly:
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: these chips should be sufficient for test coverage (Xtensa and RISC-V, single and dual core)
|
|
disable:
|
|
- if: CONFIG_NAME == "encrypted"
|
|
temporary: true
|
|
reason: there are potential bugs with pytest when using flash encryption and NVS partition with nvs_create_partition_image #TODO: IDF-8300
|
|
depends_components:
|
|
- partition_table
|
|
- spi_flash
|
|
- esp_partition
|
|
- nvs_flash
|
|
- vfs
|
|
- fatfs
|
|
- spiffs
|
|
|
|
tools/test_apps/storage/sdmmc_console:
|
|
disable:
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c61"]
|
|
temporary: true
|
|
reason: Console component not supported on H2 yet, TODO [ESP32C61] IDF-9305 sdspi
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32s2", "esp32c3"]
|
|
temporary: true
|
|
reason: No runners for other targets yet
|
|
depends_components:
|
|
- sdmmc
|
|
- esp_driver_sdmmc
|
|
- esp_driver_sdspi
|