fix(storage): mark storage pytest apps flaky in CI

This commit is contained in:
sonika.rathi
2026-05-21 20:11:09 +02:00
committed by BOT
parent 02406f2553
commit e2beec18e2
4 changed files with 8 additions and 1 deletions

View File

@@ -1,6 +1,5 @@
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import pytest
from pytest_embedded import Dut
@@ -8,6 +7,7 @@ from pytest_embedded import Dut
@pytest.mark.esp32
@pytest.mark.esp32c3
@pytest.mark.generic
@pytest.mark.flaky(reruns=2, reruns_delay=5)
@pytest.mark.parametrize('config', [
'default',
'release',
@@ -21,6 +21,7 @@ def test_spiffs_generic(dut: Dut) -> None:
@pytest.mark.esp32s3
@pytest.mark.flaky(reruns=2, reruns_delay=5)
@pytest.mark.quad_psram
@pytest.mark.parametrize('config', [
'psram',