File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -195,9 +195,7 @@ jobs:
195
195
run : pip3 install -r requirements-test.txt
196
196
197
197
- name : Run tests
198
- run : python3 -m unittest discover -v
199
- env :
200
- TEST_PURE_INSTALL : true
198
+ run : make test-pure-install
201
199
202
200
run_tests_ce_windows :
203
201
# We want to run on external PRs, but not on our own internal
@@ -341,8 +339,7 @@ jobs:
341
339
env :
342
340
REMOTE_TARANTOOL_HOST : localhost
343
341
REMOTE_TARANTOOL_CONSOLE_PORT : 3302
344
- TEST_PURE_INSTALL : true
345
- run : python3 -m unittest discover -v
342
+ run : make test-pure-install
346
343
347
344
- name : Stop test tarantool instance
348
345
if : ${{ always() }}
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ install:
7
7
test :
8
8
python3 setup.py test
9
9
10
+ .PHONY : test-pure-install
11
+ test-pure-install :
12
+ TEST_PURE_INSTALL=true python3 -m unittest discover -v
13
+
10
14
.PHONY : testdata
11
15
testdata :
12
16
cd ./test/data/; ./generate.sh
You can’t perform that action at this time.
0 commit comments