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 23, 2024
1 parent 478e79a commit 6516353
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 @@ -42,12 +42,14 @@ jobs:

- name: Test with pytest
run: |
pyenv global ${{ matrix.python-version }}
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
export SCYLLA_VERSION='release:5.1'
./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 6516353

Please sign in to comment.