pytest_ulp_fsm_app.py 386 B

123456789101112131415
  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.esp32
  6. @pytest.mark.esp32s2
  7. @pytest.mark.esp32s3
  8. @pytest.mark.generic
  9. def test_ulp_fsm(dut: Dut) -> None:
  10. dut.expect('Press ENTER to see the list of tests')
  11. dut.write('![ignore]')
  12. dut.expect_unity_test_output()