From 6913aeb2384075211136fadd547e36cc45af49bf Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Mon, 13 Nov 2023 17:08:31 -0500 Subject: [PATCH] one more db test conf --- tests/conftest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 215028778..80a97946d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -110,9 +110,6 @@ def _notify_db(notify_api, worker_id): ALEMBIC_CONFIG = os.path.join(BASE_DIR, "migrations") config = Config(ALEMBIC_CONFIG + "/alembic.ini") config.set_main_option("script_location", ALEMBIC_CONFIG) - config.set_main_option( - "sqlalchemy.url", app_context.app.config["SQLALCHEMY_DATABASE_URI"] - ) # Run migrations on the test database. upgrade(config, "head")