Only install hacking in pep8

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

Change-Id: I12ecd682c38ac700cc9bd5395ef5d92e87c4acca
This commit is contained in:
ZhiQiang Fan
2016-05-13 05:19:16 +08:00
parent 480fc9f0ca
commit 5a0dab766e
2 changed files with 1 additions and 1 deletions

View File

@@ -2,7 +2,6 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
# Hacking already pins down pep8, pyflakes and flake8
hacking<0.11,>=0.10.0
coverage>=3.6 # Apache-2.0
discover # BSD
fixtures<2.0,>=1.3.1 # Apache-2.0/BSD

View File

@@ -13,6 +13,7 @@ commands =
python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
deps = hacking<0.11,>=0.10.0
commands = flake8
[testenv:cover]