mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-20 00:10:03 +02:00
12 lines
181 B
Python
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
|