Repository: libcloud
Updated Branches:
refs/heads/trunk d4b65ccb3 -> afed2cbde
Ignore E402 pep8 errors.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/9fa921ee
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/9fa921ee
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/9fa921ee
Branch: refs/heads/trunk
Commit: 9fa921ee99d6b8698e00cb768776260cacc430c1
Parents: d4b65cc
Author: Tomaz Muraus <tomaz@apache.org>
Authored: Sat Feb 7 22:51:11 2015 +0100
Committer: Tomaz Muraus <tomaz@apache.org>
Committed: Sat Feb 7 22:51:11 2015 +0100
----------------------------------------------------------------------
tox.ini | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/libcloud/blob/9fa921ee/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index 1fc2393..f13e909 100644
--- a/tox.ini
+++ b/tox.ini
@@ -66,9 +66,9 @@ commands = pylint --rcfile=.pylintrc -E libcloud/
[testenv:lint]
deps = flake8
-commands = flake8 --exclude="test" libcloud/
- flake8 --max-line-length=160 libcloud/test/
- flake8 demos/
- flake8 --ignore=E902 docs/examples/
- flake8 --ignore=E902 --max-line-length=160 contrib/
+commands = flake8 --ignore=E402 --exclude="test" libcloud/
+ flake8 --ignore=E402 --max-line-length=160 libcloud/test/
+ flake8 --ignore=E402 demos/
+ flake8 --ignore=E402,E902 docs/examples/
+ flake8 --ignore=E402,E902 --max-line-length=160 contrib/
python -mjson.tool libcloud/data/pricing.json
|