Skip to content

Commit 7f57a65

Browse files
committed
More fixes to integration job
1 parent 9c012ce commit 7f57a65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/run-tests/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ runs:
5454
["6.2.16"]="6.2.6-v17"
5555
)
5656
57-
if [[ -v version_mapping[$REDIS_VERSION] ]]; then
58-
export REDIS_STACK_IMAGE="redis/redis-stack-server:${version_mapping[$version]}"
57+
if [[ -v redis_stack_version_mapping[$REDIS_VERSION] ]]; then
58+
export REDIS_STACK_IMAGE="redis/redis-stack-server:${redis_stack_version_mapping[$REDIS_VERSION]}"
5959
echo "REDIS_MOD_URL=redis://127.0.0.1:6479/0" >> $GITHUB_ENV
6060
else
6161
echo "Version not found in the mapping."

.github/workflows/integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
max-parallel: 15
6464
fail-fast: false
6565
matrix:
66-
redis-version: ['8.0.0-M01', '7.4.1', '7.2.6', '6.2.16']
66+
redis-version: ['8.0-M01', '7.4.1', '7.2.6', '6.2.16']
6767
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10']
6868
parser-backend: ['plain']
6969
event-loop: ['asyncio']

0 commit comments

Comments
 (0)