Files
Marius Vikhammer 25a2747dfd ci: restore runnable pytest configs
Use real CI config names and minimal config aliases so these tests are
collected and built again instead of silently being skipped.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Made-with: Cursor
2026-03-16 13:45:26 +08:00

25 lines
708 B
Python

# SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
import pytest
from pytest_embedded import Dut
from pytest_embedded_idf.utils import idf_parametrize
@pytest.mark.generic
@idf_parametrize(
'config,target',
[
('default', 'supported_targets'),
('newlib', 'supported_targets'),
('options', 'supported_targets'),
('single_core_esp32', 'esp32'),
('psram_esp32', 'esp32'),
('release_esp32', 'esp32'),
('release_esp32c2', 'esp32c2'),
('misaligned_mem', 'esp32c3'),
],
indirect=['config', 'target'],
)
def test_newlib(dut: Dut) -> None:
dut.run_all_single_board_cases()