pytest_uart.py 416 B

123456789101112131415161718
  1. # SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: CC0-1.0
  3. import pytest
  4. @pytest.mark.supported_targets
  5. @pytest.mark.generic
  6. @pytest.mark.parametrize(
  7. 'config',
  8. [
  9. 'iram_safe',
  10. 'release',
  11. ],
  12. indirect=True,
  13. )
  14. def test_uart_single_dev(case_tester) -> None: # type: ignore
  15. case_tester.run_all_normal_cases(reset=True)