Only install hacking in pep8

There is no need to install all test requirements
when we only do pep8 check.

Change-Id: I6adeb4ffd55162e42ed54ce2a2086167bac7e3cf
This commit is contained in:
Yatin Kumbhare 2016-05-16 10:38:59 +05:30
parent ed763cd959
commit 757ae73815
2 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,6 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking<0.11,>=0.10.2
cliff!=1.16.0,!=1.17.0,>=1.15.0 # Apache-2.0
coverage>=3.6 # Apache-2.0

View File

@ -15,6 +15,7 @@ commands = python setup.py testr --slowest --testr-args='{posargs}'
whitelist_externals = rm
[testenv:pep8]
deps = hacking<0.11,>=0.10.2
commands = flake8
[testenv:venv]