Update tests/test_utils_logcfg.py
Run CI Tests / test (push) Successful in 2m29s

This commit is contained in:
2025-08-29 11:50:17 +02:00
parent 272a230750
commit f976d806b6
+3
View File
@@ -51,6 +51,9 @@ def test_custom_log_outputs(levelname, logfunc, message, capsys):
def test_import_logging_once_per_module():
code = textwrap.dedent("""
import sys
for m in ("math", "io", "random"):
sys.modules.pop(m, None)
from slic.utils.logcfg import *
import math
import io