Skip to content

Commit aad8599

Browse files
committed
Try to correct bug in GitHub Action
1 parent d28df47 commit aad8599

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_automated/integration/conftest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,13 @@
1616
def db_client_test() -> DatabaseClient:
1717
conn = get_postgres_connection_string()
1818
alembic_cfg = Config("alembic.ini")
19+
alembic_cfg.set_main_option(
20+
"sqlalchemy.url",
21+
get_postgres_connection_string()
22+
)
23+
1924
engine = create_engine(conn)
25+
2026
alembic_cfg.attributes["connection"] = engine.connect()
2127

2228
command.upgrade(alembic_cfg, "head")

0 commit comments

Comments
 (0)