@@ -76,14 +76,14 @@ jobs:
7676 # install of the newer msgpack package by overwriting it with sed.
7777 if : matrix.msgpack-deps != ''
7878 run : |
79- pip install ${{ matrix.msgpack-deps }}
79+ pip3 install ${{ matrix.msgpack-deps }}
8080 sed -i -e "s/^msgpack.*$/${{ matrix.msgpack-deps }}/" requirements.txt
8181
8282 - name : Install package requirements
83- run : pip install -r requirements.txt
83+ run : pip3 install -r requirements.txt
8484
8585 - name : Install test requirements
86- run : pip install -r requirements-test.txt
86+ run : pip3 install -r requirements-test.txt
8787
8888 - name : Run tests
8989 run : make test
@@ -136,10 +136,10 @@ jobs:
136136 python-version : ${{ matrix.python }}
137137
138138 - name : Install package requirements
139- run : pip install -r requirements.txt
139+ run : pip3 install -r requirements.txt
140140
141141 - name : Install test requirements
142- run : pip install -r requirements-test.txt
142+ run : pip3 install -r requirements-test.txt
143143
144144 - name : Run tests
145145 run : |
@@ -191,13 +191,13 @@ jobs:
191191 python-version : ${{ matrix.python }}
192192
193193 - name : Install the package with pip
194- run : pip install git+$GITHUB_SERVER_URL/$GITHUB_REPOSITORY@$GITHUB_REF_NAME
194+ run : pip3 install git+$GITHUB_SERVER_URL/$GITHUB_REPOSITORY@$GITHUB_REF_NAME
195195
196196 - name : Install test requirements
197- run : pip install -r requirements-test.txt
197+ run : pip3 install -r requirements-test.txt
198198
199199 - name : Run tests
200- run : python -m unittest discover -v
200+ run : python3 -m unittest discover -v
201201 env :
202202 TEST_PURE_INSTALL : true
203203
@@ -235,10 +235,10 @@ jobs:
235235 python-version : ${{ matrix.python }}
236236
237237 - name : Install connector requirements
238- run : pip install -r requirements.txt
238+ run : pip3 install -r requirements.txt
239239
240240 - name : Install test requirements
241- run : pip install -r requirements-test.txt
241+ run : pip3 install -r requirements-test.txt
242242
243243 - name : Setup WSL for tarantool
244244 uses : Vampire/setup-wsl@v1
@@ -322,10 +322,10 @@ jobs:
322322 python-version : ${{ matrix.python }}
323323
324324 - name : Install the package with pip
325- run : pip install git+$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY@$env:GITHUB_REF_NAME
325+ run : pip3 install git+$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY@$env:GITHUB_REF_NAME
326326
327327 - name : Install test requirements
328- run : pip install -r requirements-test.txt
328+ run : pip3 install -r requirements-test.txt
329329
330330 - name : Setup WSL for tarantool
331331 uses : Vampire/setup-wsl@v1
@@ -351,7 +351,7 @@ jobs:
351351 REMOTE_TARANTOOL_HOST : localhost
352352 REMOTE_TARANTOOL_CONSOLE_PORT : 3302
353353 TEST_PURE_INSTALL : true
354- run : python -m unittest discover -v
354+ run : python3 -m unittest discover -v
355355
356356 - name : Stop test tarantool instance
357357 if : ${{ always() }}
0 commit comments