@@ -175,11 +175,6 @@ jobs:
175
175
- name : Clone the connector repo
176
176
uses : actions/checkout@v2
177
177
178
- - name : Remove connector source code
179
- run : |
180
- rm -rf tarantool
181
- rm setup.py
182
-
183
178
- name : Install tarantool ${{ matrix.tarantool }}
184
179
uses : tarantool/setup-tarantool@v1
185
180
with :
@@ -190,6 +185,9 @@ jobs:
190
185
with :
191
186
python-version : ${{ matrix.python }}
192
187
188
+ - name : Remove connector source code
189
+ run : python3 .github/scripts/remove_source_code.py
190
+
193
191
- name : Install the package with pip
194
192
run : pip3 install git+$GITHUB_SERVER_URL/$GITHUB_REPOSITORY@$GITHUB_REF_NAME
195
193
@@ -306,21 +304,14 @@ jobs:
306
304
- name : Clone the connector repo
307
305
uses : actions/checkout@v2
308
306
309
- - name : Remove connector source code (main folder)
310
-
311
- with :
312
- path : tarantool
313
-
314
- - name : Remove connector source code (setup.py)
315
-
316
- with :
317
- path : setup.py
318
-
319
307
- name : Setup Python for tests
320
308
uses : actions/setup-python@v2
321
309
with :
322
310
python-version : ${{ matrix.python }}
323
311
312
+ - name : Remove connector source code
313
+ run : python3 .github/scripts/remove_source_code.py
314
+
324
315
- name : Install the package with pip
325
316
run : pip3 install git+$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY@$env:GITHUB_REF_NAME
326
317
0 commit comments