ci: fix pytest markers

This commit is contained in:
Chen Yudong
2026-06-15 11:34:48 +08:00
committed by wuzhenghui
parent 85c42f8e11
commit d7204b89eb
2 changed files with 3 additions and 2 deletions

View File

@@ -2,9 +2,10 @@
# SPDX-License-Identifier: Unlicense OR CC0-1.0
import pytest
from pytest_embedded import Dut
from pytest_embedded_idf.utils import idf_parametrize
@pytest.mark.esp32
@pytest.mark.generic
@idf_parametrize('target', ['esp32'], indirect=['target'])
def test_fatfs_bdl(dut: Dut) -> None:
dut.run_all_single_board_cases(timeout=120)

View File

@@ -61,7 +61,7 @@ def test_esp_pm_mode_stats_pd_top(dut: Dut) -> None:
@pytest.mark.generic
@pytest.mark.esp32c5_eco3
@pytest.mark.esp32c5_rev1
@pytest.mark.parametrize('config', ['pd_top'], indirect=True)
@idf_parametrize('target', ['esp32c5'], indirect=['target'])
def test_esp_pm_mode_stats_pd_top_esp32c5_eco3(dut: Dut) -> None: