File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
.github/actions/run-tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -73,25 +73,25 @@ runs:
7373 - name : Run RESP2 tests
7474 run : |
7575 if [ "${{inputs.event-loop}}" == "uvloop" ]; then
76- invoke standalone-tests --redismod -url=${REDISMOD_URL} --uvloop --protocol=2
76+ invoke standalone-tests --redis-mod -url=${REDISMOD_URL} --uvloop --protocol=2
7777 invoke cluster-tests --uvloop --protocol=2
7878 else
79- invoke standalone-tests --redismod -url=${REDISMOD_URL} --protocol=2
79+ invoke standalone-tests --redis-mod -url=${REDISMOD_URL} --protocol=2
8080 invoke cluster-tests --protocol=2
8181 fi
8282 shell : bash
8383
8484 - name : Run RESP3 tests
8585 run : |
8686 if [ "${{inputs.event-loop}}" == "uvloop" ]; then
87- invoke standalone-tests --redismod -url=${REDISMOD_URL} --uvloop --protocol=3
87+ invoke standalone-tests --redis-mod -url=${REDISMOD_URL} --uvloop --protocol=3
8888
8989 # hiredis does not support RESP3 on cluster
9090 if [ "${{inputs.parser-backend}}" != 'hiredis' ]; then
9191 invoke cluster-tests --uvloop --protocol=3
9292 fi
9393 else
94- invoke standalone-tests --redismod -url=${REDISMOD_URL} --protocol=3
94+ invoke standalone-tests --redis-mod -url=${REDISMOD_URL} --protocol=3
9595
9696 # hiredis does not support RESP3 on cluster
9797 if [ "${{inputs.parser-backend}}" != 'hiredis' ]; then
You can’t perform that action at this time.
0 commit comments