pytest_esp_rom.py 426 B

1234567891011121314151617
  1. # SPDX-FileCopyrightText: 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.esp32c3
  6. @pytest.mark.esp32s2
  7. @pytest.mark.esp32s3
  8. @pytest.mark.esp32c6
  9. @pytest.mark.generic
  10. @pytest.mark.nightly_run
  11. def test_esp_rom(dut: Dut) -> None:
  12. dut.expect('Press ENTER to see the list of tests')
  13. dut.write('*')
  14. dut.expect_unity_test_output()