Skip to content

Commit 077a525

Browse files
committed
Fix pytest command in install_and_test.sh
1 parent 46cfc93 commit 077a525

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/install_and_test.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ pip install ${PKG}
4242
pytest -m 'not onlycluster and not graph'
4343
# RedisCluster tests
4444
CLUSTER_URL="redis://localhost:16379/0"
45-
pytest -m 'not onlynoncluster and not redismod and not ssl' --redis-url=${CLUSTER_URL}
45+
CLUSTER_SSL_URL="rediss://localhost:27379/0"
46+
pytest -m 'not onlynoncluster and not redismod and not ssl and not graph' \
47+
--redis-url="${CLUSTER_URL}" --redis-ssl-url="${CLUSTER_SSL_URL}"

0 commit comments

Comments
 (0)