pytest_i80_lcd.py 404 B

1234567891011121314151617181920
  1. # SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: CC0-1.0
  3. import pytest
  4. from pytest_embedded import Dut
  5. @pytest.mark.esp32
  6. @pytest.mark.esp32s2
  7. @pytest.mark.esp32s3
  8. @pytest.mark.generic
  9. @pytest.mark.parametrize(
  10. 'config',
  11. [
  12. 'release',
  13. ],
  14. indirect=True,
  15. )
  16. def test_i80_lcd(dut: Dut) -> None:
  17. dut.run_all_single_board_cases()