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.
2 parents 82f4381 + 20e096d commit 02b997bCopy full SHA for 02b997b
.github/workflows/build-run-applications.yml
@@ -122,6 +122,7 @@ jobs:
122
- "release-v5.5"
123
runner:
124
- example: "test_example_display"
125
+ - example: "test_example_sdcard"
126
- example: "test_example_lvgl_demos"
127
- example: "test_example_generic_button_led"
128
- example: "test_example_lvgl_benchmark"
examples/display_sdcard/pytest_sdcard.py
@@ -0,0 +1,11 @@
1
+# SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
2
+# SPDX-License-Identifier: CC0-1.0
3
+
4
+import pytest
5
+from pytest_embedded import Dut
6
7
8
+@pytest.mark.esp32_p4_function_ev_board
9
+@pytest.mark.esp32_s3_korvo_2
10
+def test_example_sdcard(dut: Dut) -> None:
11
+ dut.expect_exact('example: Testing of SD card passed!')
0 commit comments