diff --git a/tests/conftest.py b/tests/conftest.py index 67a1aa4..9d5c91e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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"