Merge "only install things in the venv for pep8"
diff --git a/tox.ini b/tox.ini
index b0d66b4..565a9ad 100644
--- a/tox.ini
+++ b/tox.ini
@@ -9,8 +9,6 @@
NOSE_OPENSTACK_YELLOW=3
NOSE_OPENSTACK_SHOW_ELAPSED=1
NOSE_OPENSTACK_STDOUT=1
-deps = -r{toxinidir}/tools/pip-requires
- -r{toxinidir}/tools/test-requires
[testenv:full]
sitepackages = True
@@ -55,6 +53,8 @@
[testenv:pep8]
commands = flake8
+deps = -r{toxinidir}/tools/pip-requires
+ -r{toxinidir}/tools/test-requires
[flake8]
ignore = E125,H302,H404