pytest_perfmon_ut.py 314 B

12345678910111213
  1. # SPDX-FileCopyrightText: 2022-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.generic
  6. @pytest.mark.esp32
  7. @pytest.mark.esp32s2
  8. @pytest.mark.esp32s3
  9. def test_perfmon_ut(dut: Dut) -> None:
  10. dut.run_all_single_board_cases()