File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11
11
tests :
12
12
name : " Python ${{ matrix.python-version }}"
13
13
runs-on : " ubuntu-latest"
14
+ env :
15
+ MSSQL_SA_PASSWORD : Mssql123$#mssql
14
16
15
17
strategy :
16
18
matrix :
41
43
mssql :
42
44
image : mcr.microsoft.com/mssql/server:2019-GA-ubuntu-16.04
43
45
env :
44
- MSSQL_SA_PASSWORD : " Mssql123$#mssql "
46
+ MSSQL_SA_PASSWORD : ${{ env.MSSQL_SA_PASSWORD }}
45
47
ACCEPT_EULA : " Y"
46
48
MSSQL_PID : Express
47
49
ports :
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ async def connect(self) -> None:
78
78
user = self ._database_url .username or getpass .getuser ()
79
79
password = self ._database_url .password
80
80
81
- dsn = f"Driver={ driver } ;Database={ database } ;Server={ hostname } ;UID={ user } ;PWD={ password } ;Port= { port } "
81
+ dsn = f"Driver={ driver } ;Database={ database } ;Server={ hostname } , { port } ;UID={ user } ;PWD={ password } ;"
82
82
83
83
self ._pool = await aioodbc .create_pool (
84
84
dsn = dsn ,
You can’t perform that action at this time.
0 commit comments