Skip to content

Commit 2882b09

Browse files
update test pipeline
1 parent db5f923 commit 2882b09

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

.github/workflows/packing.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
python-version: '3.11'
3939

4040
- name: Install tools for packing and verification
41-
run: pip3 install wheel twine
41+
run: |
42+
pip3 install wheel twine
43+
pip3 install --upgrade setuptools
4244
4345
- name: Pack source and binary files
4446
run: make pip-dist

.github/workflows/testing.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
matrix:
2929
tarantool:
3030
- '2.11'
31+
- '3.3'
3132
- 'master'
3233
python:
33-
- '3.8'
3434
- '3.9'
3535
- '3.10'
3636
- '3.11'
@@ -43,13 +43,13 @@ jobs:
4343
# "This page is taking too long to load." error. Thus we use
4444
# pairwise testing.
4545
include:
46-
- tarantool: '2.11'
46+
- tarantool: '3.3'
4747
python: '3.11'
4848
msgpack-deps: 'msgpack==0.5.0'
49-
- tarantool: '2.11'
49+
- tarantool: '3.3'
5050
python: '3.11'
5151
msgpack-deps: 'msgpack==0.6.2'
52-
- tarantool: '2.11'
52+
- tarantool: '3.3'
5353
python: '3.11'
5454
msgpack-deps: 'msgpack==1.0.4'
5555

@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Setup tt
6161
run: |
62-
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
62+
curl -L https://tarantool.io/release/3/installer.sh | sudo bash
6363
sudo apt install -y tt
6464
tt version
6565
tt init
@@ -190,7 +190,7 @@ jobs:
190190
# See more here: https://github.com/tarantool/tt/issues/282
191191
run: |
192192
source tarantool-enterprise/env.sh
193-
curl -L https://tarantool.io/release/2/installer.sh | bash
193+
curl -L https://tarantool.io/release/3/installer.sh | bash
194194
sudo apt install -y tt
195195
pip3 install cmake==3.15.3
196196
tt rocks install crud TARANTOOL_DIR=$PWD/tarantool-enterprise
@@ -220,6 +220,7 @@ jobs:
220220
matrix:
221221
tarantool:
222222
- '2.11'
223+
- '3.3'
223224
python:
224225
- '3.11'
225226
steps:
@@ -252,7 +253,7 @@ jobs:
252253

253254
- name: Install the crud module for testing purposes
254255
run: |
255-
curl -L https://tarantool.io/release/2/installer.sh | bash
256+
curl -L https://tarantool.io/release/3/installer.sh | bash
256257
sudo apt install -y tt
257258
pip3 install cmake==3.15.3
258259
tt rocks install crud
@@ -277,6 +278,7 @@ jobs:
277278
matrix:
278279
# Use reduced test matrix cause Windows pipelines are long.
279280
tarantool:
281+
# https://github.com/tarantool/tarantool-python/issues/331
280282
- '2.11.0.g247a9a418-1'
281283
python:
282284
- '3.11'
@@ -346,6 +348,7 @@ jobs:
346348
matrix:
347349
# Use reduced test matrix cause Windows pipelines are long.
348350
tarantool:
351+
# https://github.com/tarantool/tarantool-python/issues/331
349352
- '2.11.0.g247a9a418-1'
350353
python:
351354
- '3.11'

0 commit comments

Comments
 (0)