We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46cfc93 commit 077a525Copy full SHA for 077a525
.github/workflows/install_and_test.sh
@@ -42,4 +42,6 @@ pip install ${PKG}
42
pytest -m 'not onlycluster and not graph'
43
# RedisCluster tests
44
CLUSTER_URL="redis://localhost:16379/0"
45
-pytest -m 'not onlynoncluster and not redismod and not ssl' --redis-url=${CLUSTER_URL}
+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