summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAlexander Ignatov <aignatov@mirantis.com>2014-06-16 09:08:41 +0400
committerAlexander Ignatov <aignatov@mirantis.com>2014-06-16 09:13:18 +0400
commit6d8e6dad1a1c0bb5a6b0367a096d9e6fb15518ca (patch)
treee2e7267451d70550ee67112e928eccfe9f0c3069 /tox.ini
parent37240417188d0e95f97d84cbfce876c2dfe66118 (diff)
downloadpython-saharaclient-6d8e6dad1a1c0bb5a6b0367a096d9e6fb15518ca.tar.gz
Added new hacking version to requirements
* Added hacking>=0.9.1,<0.10 according to change I160ee86ea8102e6ce82a9e34e2056a0f1f965d7b * Ignored all pep8 errors to work with new version Change-Id: I2832d60350babc8f37a2b4aeae1ad4ad8095fada
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 12 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index aae3630..0fd2bde 100644
--- a/tox.ini
+++ b/tox.ini
@@ -42,6 +42,18 @@ commands =
python setup.py build_sphinx
[flake8]
+# E111 indentation is not a multiple of four
+# E112 expected an indented block
+# E113 unexpected indentation
+# E226 missing whitespace around arithmetic operator
+# E241 multiple spaces after ':'
+# E265 block comment should start with '# '
+# F841 local variable is assigned to but never used
+# H305 imports not grouped correctly (re: stdlib, six: third-party)
+# H307 like imports should be grouped together (six and oslo.config.cfg from third-party are separated by whitespace)
+# H405 multi line docstring summary not separated with an empty line
+# H904 Wrap long lines in parentheses instead of a backslash
+ignore = E111,E112,E113,E226,E241,E265,F841,H305,H307,H405,H904
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools