pytest_task_watchdog.py 370 B

1234567891011121314151617
  1. # SPDX-FileCopyrightText: 2022 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.generic
  12. def test_task_watchdog(dut: Dut) -> None:
  13. dut.expect_exact('Example complete')