You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(e2e): convert database URLs to async driver format
Add _convert_to_async_url helper to convert sync database URLs
(postgresql://, mysql://, sqlite://) to their async equivalents
(postgresql+asyncpg://, mysql+aiomysql://, sqlite+aiosqlite://).
This fixes the E2E tests in CI where the DATABASE_URL env var
uses the sync format but SQLAlchemy's create_async_engine
requires the async driver format.
0 commit comments