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:
73
73
- name : Run RESP2 tests
74
74
run : |
75
75
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
77
77
invoke cluster-tests --uvloop --protocol=2
78
78
else
79
- invoke standalone-tests --redismod -url=${REDISMOD_URL} --protocol=2
79
+ invoke standalone-tests --redis-mod -url=${REDISMOD_URL} --protocol=2
80
80
invoke cluster-tests --protocol=2
81
81
fi
82
82
shell : bash
83
83
84
84
- name : Run RESP3 tests
85
85
run : |
86
86
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
88
88
89
89
# hiredis does not support RESP3 on cluster
90
90
if [ "${{inputs.parser-backend}}" != 'hiredis' ]; then
91
91
invoke cluster-tests --uvloop --protocol=3
92
92
fi
93
93
else
94
- invoke standalone-tests --redismod -url=${REDISMOD_URL} --protocol=3
94
+ invoke standalone-tests --redis-mod -url=${REDISMOD_URL} --protocol=3
95
95
96
96
# hiredis does not support RESP3 on cluster
97
97
if [ "${{inputs.parser-backend}}" != 'hiredis' ]; then
You can’t perform that action at this time.
0 commit comments