Skip to content

Commit 8a1efbe

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 79857a1 commit 8a1efbe

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
@@ -35,12 +35,14 @@ jobs:
3535
versions: ${{ matrix.python-version }}
3636
- name: Test with pytest
3737
run: |
38+
pyenv global ${{ matrix.python-version }}
3839
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
3940
export SCYLLA_VERSION='release:5.4'
4041
./scripts/run_integration_test.sh tests/integration/standard/ tests/integration/cqlengine/
4142
4243
- name: Test tablets
4344
run: |
45+
pyenv global ${{ matrix.python-version }}
4446
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
4547
export SCYLLA_VERSION='release:6.0.2'
4648
./scripts/run_integration_test.sh tests/integration/experiments/

0 commit comments

Comments
 (0)