Update tests/test_utils_pvpreload.py
Run CI Tests / test (push) Successful in 2m43s

This commit is contained in:
2025-08-26 16:11:16 +02:00
parent 09a0bbaef1
commit 02ea024867
+3 -1
View File
@@ -18,6 +18,7 @@ from slic.utils.hastyepics import get_pv
from morbidissimo import MorIOC from morbidissimo import MorIOC
from slic.utils.pvpreload import * from slic.utils.pvpreload import *
'''
def configure_logzero_for_pytest(caplog): def configure_logzero_for_pytest(caplog):
logger.handlers.clear() logger.handlers.clear()
logger.setLevel(logging.DEBUG) logger.setLevel(logging.DEBUG)
@@ -256,4 +257,5 @@ def test_pvpreload_end_to_end(tmp_path, caplog):
# Verify logs # Verify logs
logs = "\n".join(caplog.messages) logs = "\n".join(caplog.messages)
assert "PV preload done" in logs assert "PV preload done" in logs
assert "PV offload done" in logs assert "PV offload done" in logs
'''