From 388dc54cd15343148b3ed9611018b7f2e1faee36 Mon Sep 17 00:00:00 2001 From: Neda Moeini <neda.moeini@ga0479-nmoeini.home> Date: Tue, 22 Aug 2023 11:42:18 +0200 Subject: [PATCH] Test env variables. --- test/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/conftest.py b/test/conftest.py index 626ea3fe1..d68f405a3 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -93,7 +93,7 @@ def data_config_filename(configuration_data) -> str: def db_uri(): """Provide the database uri configuration to run the migration on.""" - return os.environ.get("DATABASE_URI_TEST", "postgresql://gso:gos@localhost/gso-test-db") + return os.environ.get("DATABASE_URI_TEST") def run_migrations(db_uri: str) -> None: -- GitLab