We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1799b53 commit b246c1aCopy full SHA for b246c1a
.github/workflows/ci.yml
@@ -114,7 +114,7 @@ jobs:
114
115
- name: Run tests
116
env:
117
- POSTGRES_HOST: postgres
+ POSTGRES_HOST: localhost
118
POSTGRES_PORT: 5432
119
POSTGRES_DB: murfey_test_db
120
POSTGRES_PASSWORD: psql_pwd
tests/__init__.py
@@ -3,7 +3,7 @@
3
from sqlmodel import create_engine
4
5
url = (
6
- f"postgresql://{os.environ['POSTGRES_USER']}:{os.environ['POSTGRES_PASSWORD']}"
+ f"postgresql+psycopg2://{os.environ['POSTGRES_USER']}:{os.environ['POSTGRES_PASSWORD']}"
7
f"@{os.environ['POSTGRES_HOST']}:{os.environ['POSTGRES_PORT']}/{os.environ['POSTGRES_DB']}"
8
)
9
0 commit comments