diff --git a/tests/testing_utils.py b/tests/testing_utils.py index 9e560cb..2200568 100644 --- a/tests/testing_utils.py +++ b/tests/testing_utils.py @@ -1,10 +1,14 @@ import os +import logging import dotenv dotenv.load_dotenv() def raise_error(message): raise Exception(message) +logger = logging.getLogger(__name__) +logging.basicConfig(level=logging.DEBUG) +logger.info("Connecting to " + os.getenv("LOUIS_SCHEMA")) LOUIS_SCHEMA = os.getenv("LOUIS_SCHEMA") or raise_error("LOUIS_SCHEMA is not set") LOUIS_DSN = os.getenv("LOUIS_DSN") or raise_error("LOUIS_DSN is not set") MATCH_THRESHOLD = 0.5