We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a386968 commit 2881afaCopy full SHA for 2881afa
tests/e2e/conftest.py
@@ -69,11 +69,7 @@ async def pg_engine():
69
if not database_url:
70
pytest.skip("DATABASE_URL not set - skipping PostgreSQL E2E tests")
71
72
- engine = create_async_engine(
73
- database_url,
74
- echo=False,
75
- connect_args={"timeout": CONNECTION_TIMEOUT},
76
- )
+ engine = create_async_engine(database_url, echo=False, connect_args={"timeout": CONNECTION_TIMEOUT})
77
78
try:
79
async with asyncio.timeout(CONNECTION_TIMEOUT + 2):
0 commit comments