Skip to content

Commit

Permalink
github actions: enable the correct python version
Browse files Browse the repository at this point in the history
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
  • Loading branch information
fruch committed Dec 17, 2024
1 parent 79857a1 commit 8a1efbe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ jobs:
versions: ${{ matrix.python-version }}
- name: Test with pytest
run: |
pyenv global ${{ matrix.python-version }}
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
export SCYLLA_VERSION='release:5.4'
./scripts/run_integration_test.sh tests/integration/standard/ tests/integration/cqlengine/
- name: Test tablets
run: |
pyenv global ${{ matrix.python-version }}
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
export SCYLLA_VERSION='release:6.0.2'
./scripts/run_integration_test.sh tests/integration/experiments/

0 comments on commit 8a1efbe

Please sign in to comment.