pytest_sigma_delta.py 518 B

1234567891011121314151617181920212223
  1. # SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: CC0-1.0
  3. import pytest
  4. from pytest_embedded_idf import IdfDut
  5. CONFIGS = [
  6. 'iram_safe',
  7. 'release',
  8. ]
  9. @pytest.mark.esp32
  10. @pytest.mark.esp32c3
  11. @pytest.mark.esp32c6
  12. @pytest.mark.esp32h2
  13. @pytest.mark.esp32s2
  14. @pytest.mark.esp32s3
  15. @pytest.mark.esp32h2
  16. @pytest.mark.generic
  17. @pytest.mark.parametrize('config', CONFIGS, indirect=True)
  18. def test_sdm(dut: IdfDut) -> None:
  19. dut.run_all_single_board_cases(group='sdm')