summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2014-09-27 14:34:08 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2014-09-27 22:03:30 +0000
commit8178e7811ca0f39fdaad2ca70fff9ffc18751534 (patch)
tree55634f108debda6e8e855e225b9859c72cd8d0a4
parentd43cc4f9c33a37d6a3a3f1a1eec7219a0804767b (diff)
downloadtaskflow-8178e7811ca0f39fdaad2ca70fff9ffc18751534.tar.gz
Adjust docs+venv tox environments requirements/dependencies
After a prior merge these sections are no longer valid and need to be adjusted to reflect the removal of the optional requirements file. Change-Id: I2a93c8e55f0d692df6d074bd86ab1a5e6d11a03f
-rw-r--r--tox.ini7
1 files changed, 3 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index bc91277..6636a92 100644
--- a/tox.ini
+++ b/tox.ini
@@ -21,10 +21,7 @@ commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:docs]
basepython = python2.7
-deps = -r{toxinidir}/requirements-py2.txt
- -r{toxinidir}/test-requirements.txt
- -r{toxinidir}/optional-requirements.txt
- doc8
+deps = {[testenv:py27]deps}
commands = python setup.py build_sphinx
doc8 doc/source
@@ -46,6 +43,8 @@ deps = {[testenv:py27]deps}
commands = python setup.py testr --coverage --testr-args='{posargs}'
[testenv:venv]
+basepython = python2.7
+deps = {[testenv:py27]deps}
commands = {posargs}
[flake8]