We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6cce5 commit 3f663ecCopy full SHA for 3f663ec
components/esp_driver_sdmmc/test_apps/sdmmc/pytest_sdmmc.py
@@ -1,12 +1,16 @@
1
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
2
# SPDX-License-Identifier: CC0-1.0
3
-
4
import pytest
5
from pytest_embedded_idf import IdfDut
6
7
8
@pytest.mark.esp32
9
@pytest.mark.esp32s3
+@pytest.mark.esp32p4
10
+@pytest.mark.temp_skip_ci(targets=['esp32p4'], reason='lack of runners, IDF-8970')
11
@pytest.mark.sdcard
12
def test_sdmmc(dut: IdfDut) -> None:
- dut.run_all_single_board_cases()
13
+ # SDMMC driver can't be reinitialized if the test fails,
14
+ # so we need to reset the board between tests to avoid failing
15
+ # all the tests after the first one fails.
16
+ dut.run_all_single_board_cases(reset=True)
0 commit comments