summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authordvora-h <67596500+dvora-h@users.noreply.github.com>2022-03-06 13:49:13 +0200
committerGitHub <noreply@github.com>2022-03-06 13:49:13 +0200
commit98fd06eb8df1ecc109b4a5fb2d2a2e810142283e (patch)
tree0aec0ea9d1b87637381fbd06f7e93848ddc43433 /tox.ini
parentc5d19b8571d2b15a29637f56a51b0da560072945 (diff)
downloadredis-py-98fd06eb8df1ecc109b4a5fb2d2a2e810142283e.tar.gz
Add support for JSON, TIMESERIES, BLOOM & GRAPH commands in cluster (#2032)
Co-authored-by: Chayim <chayim@users.noreply.github.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 82e79d7..d4f15ac 100644
--- a/tox.ini
+++ b/tox.ini
@@ -286,7 +286,7 @@ setenv =
commands =
standalone: pytest --cov=./ --cov-report=xml:coverage_redis.xml -W always -m 'not onlycluster' {posargs}
standalone-uvloop: pytest --cov=./ --cov-report=xml:coverage_redis.xml -W always -m 'not onlycluster' --uvloop {posargs}
- cluster: pytest --cov=./ --cov-report=xml:coverage_cluster.xml -W always -m 'not onlynoncluster and not redismod' --redis-url={env:CLUSTER_URL:} {posargs}
+ cluster: pytest --cov=./ --cov-report=xml:coverage_cluster.xml -W always -m 'not onlynoncluster and not redismod' --redis-url={env:CLUSTER_URL:} --redismod-url={env:CLUSTER_URL:} {posargs}
cluster-uvloop: pytest --cov=./ --cov-report=xml:coverage_redis.xml -W always -m 'not onlycluster' --uvloop {posargs}
[testenv:redis5]