pytest_task_watchdog.py 396 B

123456789101112131415161718
  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. # IDF-5055
  6. @pytest.mark.esp32
  7. @pytest.mark.esp32s2
  8. @pytest.mark.esp32s3
  9. @pytest.mark.esp32c3
  10. @pytest.mark.esp32c6
  11. @pytest.mark.esp32h2
  12. @pytest.mark.generic
  13. def test_task_watchdog(dut: Dut) -> None:
  14. dut.expect_exact('Example complete')