Skip to content

Commit 834f231

Browse files
Bouncheckavelanarius
authored andcommitted
Add setup Python 2 step to scylla-integration-tests in GH actions
New test using SNI proxy functionality that is about to be added requires ccm to use cqlsh queries to setup cluster properly. However without Python 2 set up cqlsh returns with '(EE) No appropriate python interpreter found.'. With this setup `python --version` should return 3.x because of the ordering. `python2 --version` and `python3 --version` will return their versions respectively.
1 parent 8a35398 commit 834f231

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/[email protected]

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,11 @@ jobs:
183183
java-version: '8'
184184
distribution: 'adopt'
185185

186+
- name: Setup Python 2
187+
uses: actions/setup-python@v2
188+
with:
189+
python-version: '2.x'
190+
186191
- name: Setup Python 3
187192
uses: actions/setup-python@v2
188193
with:

0 commit comments

Comments
 (0)