summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-12-02 15:54:29 +0200
committerGitHub <noreply@github.com>2021-12-02 15:54:29 +0200
commit1a59a7a45feaed2bd0e33ccdbcd92cd305fd7e44 (patch)
tree1bb697b0503cf42873b1183b502dc041d4c9321d /tasks.py
parent8f5c1e6b14c4c82d04a3ad141821e2fdabdd0dab (diff)
downloadredis-py-1a59a7a45feaed2bd0e33ccdbcd92cd305fd7e44.tar.gz
Run actions in Parallel (#1763)
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 9291e7e..880e70d 100644
--- a/tasks.py
+++ b/tasks.py
@@ -55,7 +55,7 @@ def standalone_tests(c):
"""Run all Redis tests against the current python,
with and without hiredis."""
print("Starting Redis tests")
- run("tox -e standalone-'{hiredis}'")
+ run("tox -e standalone-'{plain,hiredis}'")
@task