This repository was archived by the owner on Aug 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4545 ACCEPT_EULA : " Y"
4646 MSSQL_PID : " Developer"
4747 ports :
48- - " 1433:1433"
48+ - 1433:1433
4949
5050 steps :
5151 - uses : " actions/checkout@v3"
7373 mysql+asyncmy://username:password@localhost:3306/testsuite,
7474 postgresql://username:password@localhost:5432/testsuite,
7575 postgresql+aiopg://username:password@127.0.0.1:5432/testsuite,
76- postgresql+asyncpg://username:password@localhost:5432/testsuite
76+ postgresql+asyncpg://username:password@localhost:5432/testsuite,
7777 mssql://sa:mssql123mssql@localhost:1433/master?driver=ODBC+Driver+17+for+SQL+Server,
7878 mssql+pyodbc://sa:mssql123mssql@localhost:1433/master?driver=ODBC+Driver+17+for+SQL+Server,
7979 mssql+aioodbc://sa:mssql123mssql@localhost:1433/master?driver=ODBC+Driver+17+for+SQL+Server
Original file line number Diff line number Diff line change @@ -934,7 +934,7 @@ async def test_queries_with_expose_backend_connection(database_url):
934934 cursor = await raw_connection .cursor ()
935935 await cursor .execute (select_query )
936936 results = await cursor .fetchall ()
937- elif database .url .scheme == "mysql+asyncmy" or data :
937+ elif database .url .scheme == "mysql+asyncmy" :
938938 async with raw_connection .cursor () as cursor :
939939 await cursor .execute (select_query )
940940 results = await cursor .fetchall ()
You can’t perform that action at this time.
0 commit comments