From e8457499044a292e8422971b464eb4debb8e4955 Mon Sep 17 00:00:00 2001 From: Nathan Ollerenshaw Date: Thu, 11 Jan 2024 17:15:53 -0800 Subject: [PATCH] localhost --- tests/db_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/db_utils.py b/tests/db_utils.py index f4819f3..e6efda3 100644 --- a/tests/db_utils.py +++ b/tests/db_utils.py @@ -6,7 +6,7 @@ from psycopg2 import connect from sqlalchemy.orm import sessionmaker -PG_CONFIG = dict(user="postgres", password="postgres", host="postgres", port=5432) +PG_CONFIG = dict(user="postgres", password="postgres", host="localhost", port=5432) CI_PG_CONFIG = dict(PG_CONFIG, port=5432) MASTER_DATABASE = "postgres"