Skip to content

Commit 6516353

Browse files
committed
github actions: enable the correct python version
seems like `pyenv-action` we don't end up using the correct python version as we expected, and the tests are running multiple time with the default python version of the runner
1 parent 478e79a commit 6516353

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,14 @@ jobs:
4242

4343
- name: Test with pytest
4444
run: |
45+
pyenv global ${{ matrix.python-version }}
4546
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
4647
export SCYLLA_VERSION='release:5.1'
4748
./scripts/run_integration_test.sh tests/integration/standard/ tests/integration/cqlengine/
4849
4950
- name: Test tablets
5051
run: |
52+
pyenv global ${{ matrix.python-version }}
5153
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
5254
export SCYLLA_VERSION='release:6.0.2'
5355
./scripts/run_integration_test.sh tests/integration/experiments/

0 commit comments

Comments
 (0)