pytest_log_linux.py 295 B

12345678910
  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.linux
  6. @pytest.mark.host_test
  7. def test_log_linux(dut: Dut) -> None:
  8. dut.expect_exact('All tests passed', timeout=5)