Skip to content

Commit 9b73426

Browse files
committed
Remove outdated guard for hiredis-py
The guard was required to prevent cluster tests on RESP3 with hiredis-py before 3.1.0
1 parent 8d8678d commit 9b73426

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,10 @@ runs:
125125
fi
126126

127127
echo "::endgroup::"
128-
129-
if [ "$protocol" == "2" ] || [ "${{inputs.parser-backend}}" != 'hiredis' ]; then
130-
echo "::group::RESP${protocol} cluster tests"
131-
invoke cluster-tests $eventloop --protocol=${protocol}
132-
echo "::endgroup::"
133-
fi
128+
129+
echo "::group::RESP${protocol} cluster tests"
130+
invoke cluster-tests $eventloop --protocol=${protocol}
131+
echo "::endgroup::"
134132
}
135133

136134
run_tests 2 "${{inputs.event-loop}}"

0 commit comments

Comments
 (0)