Update tests/test_utils_logign.py
Run CI Tests / test (push) Successful in 28s

This commit is contained in:
2025-07-28 16:51:45 +02:00
parent b5bf2a2547
commit b163099c26
+2 -4
View File
@@ -34,7 +34,6 @@ def test_ignore_log_msg_behavior(levelname, msg_to_ignore, msg_to_keep, capsys):
log.enlarge(msg_to_keep)
captured = capsys.readouterr().err
print("Captured stderr:", repr(captured))
assert msg_to_ignore not in captured
assert msg_to_keep in captured
@@ -57,7 +56,6 @@ def test_ignore_only_by_level(capsys):
log.info("Should be visible")
captured = capsys.readouterr().err
print("Captured stderr (lvl only):", repr(captured))
assert "Should be hidden" not in captured
assert "Should be visible" in captured
@@ -80,7 +78,6 @@ def test_ignore_only_by_msg(capsys):
log.warning("keep this")
captured = capsys.readouterr().err
print("Captured stderr (msg only):", repr(captured))
assert "skip this" not in captured
assert "keep this" in captured
@@ -103,6 +100,7 @@ def test_filter_removed_after_context(capsys):
log.warning("temp msg") # should now appear
captured = capsys.readouterr().err
print("Captured stderr (after context):", repr(captured))
assert "temp msg" in captured
count = captured.count("temp msg")
assert count == 1, f"'temp msg' should appear exactly once, found {count}"