24
0
mirror of https://github.com/tiqi-group/pydase.git synced 2025-05-03 22:10:06 +02:00
2024-07-30 08:28:07 +02:00

12 lines
181 B
Python

import logging
import pytest
@pytest.fixture
def caplog(caplog: pytest.LogCaptureFixture):
logger = logging.getLogger("pydase")
logger.propagate = True
yield caplog