Configure INFO level logging to stdout in extract-basic test conftest (#177)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Adrian Lyjak
2026-01-15 10:35:49 -05:00
committed by GitHub
parent f43a898b90
commit 8513a08de0
+9
View File
@@ -6,7 +6,16 @@ as extraction_review.clients reads this at module load time to initialize
the mock server.
"""
import logging
import os
import sys
# Configure logging to stdout at INFO level
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
handlers=[logging.StreamHandler(sys.stdout)],
)
# Enable the fake LlamaCloud server for all tests
os.environ["FAKE_LLAMA_CLOUD"] = "true"