pytest_crypto.py 292 B

1234567891011
  1. # SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: CC0-1.0
  3. import pytest
  4. from pytest_embedded import Dut
  5. @pytest.mark.supported_targets
  6. @pytest.mark.generic
  7. def test_crypto(dut: Dut) -> None:
  8. dut.expect('main_task: Returned from app_main()')