Skip to content

Commit

Permalink
Fix for test database port
Browse files Browse the repository at this point in the history
  • Loading branch information
edlouth committed Oct 1, 2024
1 parent 8cdfe58 commit 85586ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pgvector.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def get_vanna_connection_string():
server = os.environ.get("PG_SERVER")
driver = "psycopg"
port = 5434
port = os.environ.get("PG_PORT", 5432)
database = os.environ.get("PG_DATABASE")
username = os.environ.get("PG_USERNAME")
password = os.environ.get("PG_PASSWORD")
Expand Down

0 comments on commit 85586ac

Please sign in to comment.