From bf2bbbde163e6e51540373f5bcecae3271a61048 Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Mon, 15 Apr 2024 14:25:03 +0200 Subject: [PATCH] ci: Added missing generic tag to psram tests --- components/esp_timer/test_apps/pytest_esp_timer_ut.py | 1 + components/fatfs/test_apps/flash_wl/pytest_fatfs_flash_wl.py | 3 ++- .../pthread_psram_tests/pytest_pthread_psram_tests.py | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/components/esp_timer/test_apps/pytest_esp_timer_ut.py b/components/esp_timer/test_apps/pytest_esp_timer_ut.py index cd4379ca61..e7c23e9234 100644 --- a/components/esp_timer/test_apps/pytest_esp_timer_ut.py +++ b/components/esp_timer/test_apps/pytest_esp_timer_ut.py @@ -24,6 +24,7 @@ def test_esp_timer(dut: Dut) -> None: @pytest.mark.esp32 +@pytest.mark.generic @pytest.mark.psram @pytest.mark.parametrize('config', [ 'psram', diff --git a/components/fatfs/test_apps/flash_wl/pytest_fatfs_flash_wl.py b/components/fatfs/test_apps/flash_wl/pytest_fatfs_flash_wl.py index c839871f91..40a000a714 100644 --- a/components/fatfs/test_apps/flash_wl/pytest_fatfs_flash_wl.py +++ b/components/fatfs/test_apps/flash_wl/pytest_fatfs_flash_wl.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD +# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: CC0-1.0 import pytest from pytest_embedded import Dut @@ -24,6 +24,7 @@ def test_fatfs_flash_wl_generic(dut: Dut) -> None: @pytest.mark.esp32 +@pytest.mark.generic @pytest.mark.psram @pytest.mark.parametrize( 'config', diff --git a/components/pthread/test_apps/pthread_psram_tests/pytest_pthread_psram_tests.py b/components/pthread/test_apps/pthread_psram_tests/pytest_pthread_psram_tests.py index 65408ec7ab..9da7f7cba3 100644 --- a/components/pthread/test_apps/pthread_psram_tests/pytest_pthread_psram_tests.py +++ b/components/pthread/test_apps/pthread_psram_tests/pytest_pthread_psram_tests.py @@ -1,10 +1,11 @@ -# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD +# SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: CC0-1.0 import pytest from pytest_embedded import Dut @pytest.mark.esp32 +@pytest.mark.generic @pytest.mark.psram def test_pthread_psram(dut: Dut) -> None: dut.run_all_single_board_cases(timeout=10)