pytest_efuse.py 406 B

123456789101112131415
  1. # SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: Unlicense OR CC0-1.0
  3. import pytest
  4. from pytest_embedded import Dut
  5. @pytest.mark.esp32
  6. @pytest.mark.esp32c2
  7. @pytest.mark.esp32c3
  8. @pytest.mark.generic
  9. def test_efuse(dut: Dut) -> None:
  10. dut.expect_exact('Press ENTER to see the list of tests')
  11. dut.write('*')
  12. dut.expect_unity_test_output(timeout=200)