Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-run-applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ jobs:
- "release-v5.5"
runner:
- example: "test_example_display"
- example: "test_example_sdcard"
- example: "test_example_lvgl_demos"
- example: "test_example_generic_button_led"
- example: "test_example_lvgl_benchmark"
Expand Down
11 changes: 11 additions & 0 deletions examples/display_sdcard/pytest_sdcard.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0

import pytest
from pytest_embedded import Dut


@pytest.mark.esp32_p4_function_ev_board
@pytest.mark.esp32_s3_korvo_2
def test_example_sdcard(dut: Dut) -> None:
dut.expect_exact('example: Testing of SD card passed!')
Loading