summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2016-06-26 11:54:19 -0700
committerJoshua Harlow <jxharlow@godaddy.com>2016-07-26 17:29:45 -0700
commitad23e3d4ea4a65aeaf0fd7504849e710cadefa53 (patch)
treef233089279143a8ad6135463e1fceb53cbd425da /tox.ini
parent81ef45bd86ed72f8d74cb867a3fed1f342c753c9 (diff)
downloadtaskflow-ad23e3d4ea4a65aeaf0fd7504849e710cadefa53.tar.gz
Change dependency to use flavors
This makes sure we install the correct and only the correct dependencies when installing taskflow, based on the driver one wants to use. Change-Id: Id40f73412c76a16152b9a2f853ef9cbbd9e9e231
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index d838abe..90f31d5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -10,7 +10,9 @@ envlist = cover,
update-states
[testenv]
-deps = -r{toxinidir}/test-requirements.txt
+# We need to install a bit more than just `test' because those drivers have
+# custom tests that we always run
+deps = .[test,workers,zookeeper,database,redis,eventlet,doc]
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:docs]