pytest_nvsgen_example.py 348 B

1234567891011
  1. # SPDX-FileCopyrightText: 2023 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. def test_nvsgen_example(dut: Dut) -> None:
  7. dut.expect('Reading values from NVS', timeout=10)
  8. dut.expect('Reading values from NVS done - all OK', timeout=10)