File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 41
41
pip install -r requirements.txt
42
42
pip install -r dev_requirements.txt
43
43
if [ "${{inputs.parser-backend}}" == "hiredis" ]; then
44
- pip install hiredis${{inputs.hiredis-version}}
44
+ pip install " hiredis${{inputs.hiredis-version}}"
45
45
echo "PARSER_BACKEND=$(echo "${{inputs.parser-backend}}_${{inputs.hiredis-version}}" | sed 's/[^a-zA-Z0-9]/_/g')" >> $GITHUB_ENV
46
46
else
47
47
echo "PARSER_BACKEND=${{inputs.parser-backend}}" >> $GITHUB_ENV
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129
129
event-loop : [ 'asyncio' ]
130
130
env :
131
131
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
132
- name : Redis ${{ matrix.redis-version }}; Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
132
+ name : Redis ${{ matrix.redis-version }}; Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}} (${{ matrix.hiredis-version }}) ; EL:${{matrix.event-loop}}
133
133
steps :
134
134
- uses : actions/checkout@v4
135
135
- name : Run tests
@@ -178,6 +178,10 @@ jobs:
178
178
with :
179
179
python-version : 3.9
180
180
- name : Run installed unit tests
181
+ env :
182
+ REDIS_VERSION : ${{ env.CURRENT_REDIS_VERSION }}
183
+ REDIS_IMAGE : " redis:${{ env.CURRENT_REDIS_VERSION }}"
184
+ CLIENT_LIBS_TEST_IMAGE : " redislabs/client-libs-test:${{ env.CURRENT_REDIS_VERSION }}"
181
185
run : |
182
186
bash .github/workflows/install_and_test.sh ${{ matrix.extension }}
183
187
You can’t perform that action at this time.
0 commit comments