summaryrefslogtreecommitdiff
path: root/.github/workflows/install_and_test.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/install_and_test.sh')
-rwxr-xr-x.github/workflows/install_and_test.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/install_and_test.sh b/.github/workflows/install_and_test.sh
index 330102e..7a8cd67 100755
--- a/.github/workflows/install_and_test.sh
+++ b/.github/workflows/install_and_test.sh
@@ -38,4 +38,8 @@ cd ${TESTDIR}
# install, run tests
pip install ${PKG}
-pytest
+# Redis tests
+pytest -m 'not onlycluster'
+# RedisCluster tests
+CLUSTER_URL="redis://localhost:16379/0"
+pytest -m 'not onlynoncluster and not redismod' --redis-url=${CLUSTER_URL}