summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-11-25 15:37:58 +0200
committerGitHub <noreply@github.com>2021-11-25 15:37:58 +0200
commit20c5f0fa4676c4f0fde778dae81c3f96078348b5 (patch)
tree8813688ccaaf7ab0171604370ac402f4fe4671d7 /tasks.py
parentd7b56103ed4d0ba9c05c74ca5580c72fcb70c09c (diff)
downloadredis-py-20c5f0fa4676c4f0fde778dae81c3f96078348b5.tar.gz
Fixing COMMAND GETKEYS tests (#1750)
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tasks.py b/tasks.py
index 138ca69..137d177 100644
--- a/tasks.py
+++ b/tasks.py
@@ -41,15 +41,15 @@ def tests(c):
with and without hiredis.
"""
print("Starting Redis tests")
- run("tox -e '{redis,cluster}'-'{plain,hiredis}'")
+ run("tox -e '{standalone,cluster}'-'{plain,hiredis}'")
@task
-def redis_tests(c):
+def standalone_tests(c):
"""Run all Redis tests against the current python,
with and without hiredis."""
print("Starting Redis tests")
- run("tox -e redis-'{hiredis}'")
+ run("tox -e standalone-'{hiredis}'")
@task