Skip to content

Commit 039b4bd

Browse files
dmygeroleg-jukovec
authored andcommitted
ci: fix Python version for tests
Fixed CI environment setup with required Python version. Follows up #727
1 parent 81ee2ab commit 039b4bd

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/actions/prepare-ce-test-env/action.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ runs:
2424
with:
2525
go-version: '${{ env.GO_VERSION }}'
2626

27+
- name: Setup python
28+
uses: actions/setup-python@v4
29+
with:
30+
python-version: '${{ env.PYTHON_VERSION }}'
31+
2732
- name: Setup Mage
2833
run: |
2934
git clone https://github.com/magefile/mage
@@ -40,8 +45,7 @@ runs:
4045
build-essential ninja-build \
4146
lua5.1 luarocks lcov \
4247
ruby-dev liblz4-dev autoconf \
43-
automake \
44-
libtool python3-pytest python3-psutil pip
48+
automake libtool
4549
sudo luarocks install luacheck 0.26.1
4650
sudo gem install coveralls-lcov
4751
sudo pip3 install tarantool

.github/actions/prepare-ee-test-env/action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ runs:
3030
with:
3131
go-version: '${{ env.GO_VERSION }}'
3232

33+
- name: Setup python
34+
uses: actions/setup-python@v4
35+
with:
36+
python-version: '${{ env.PYTHON_VERSION }}'
37+
3338
- name: Setup Mage
3439
run: |
3540
git clone https://github.com/magefile/mage

0 commit comments

Comments
 (0)