diff options
author | Bin Sun <bins@vmware.com> | 2017-08-24 13:30:48 +0800 |
---|---|---|
committer | Bin Sun <bins@vmware.com> | 2017-08-30 22:06:49 +0800 |
commit | 67430600410e312c2db5a6a7709da8e45a5245fa (patch) | |
tree | ef2cfb12347d78729ccbb736df9294a717ae043d /multivimbroker/tox.ini | |
parent | cbc888fc41403f08f33061b285049b530785ef73 (diff) |
add pep8 check
Change-Id: Ia198017767f5f2144873a082bf0f5b00ff01db1c
Issue-Id: MULTICLOUD-64
Signed-off-by: Bin Sun <bins@vmware.com>
Diffstat (limited to 'multivimbroker/tox.ini')
-rw-r--r-- | multivimbroker/tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/multivimbroker/tox.ini b/multivimbroker/tox.ini index 9292301..88d43d9 100644 --- a/multivimbroker/tox.ini +++ b/multivimbroker/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27 +envlist = py27,pep8 skipsdist = true [tox:jenkins] @@ -8,3 +8,7 @@ downloadcache = ~/cache/pip [testenv] deps = -r{toxinidir}/requirements.txt commands = coverage run --branch manage.py test multivimbroker + +[testenv:pep8] +deps=flake8 +commands=flake8 |