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 4492278 commit 0de8099Copy full SHA for 0de8099
tests/integrations/asyncpg/test_asyncpg.py
@@ -62,7 +62,9 @@ def _get_db_name():
62
async def _clean_pg():
63
# Create the test database if it doesn't exist
64
try:
65
- default_conn = await connect(PG_CONNECTION_URI)
+ default_conn = await connect(
66
+ "postgresql://{}:{}@{}".format(PG_USER, PG_PASSWORD, PG_HOST)
67
+ )
68
69
# Check if database exists, create if not
70
result = await default_conn.fetchval(
0 commit comments