summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorIhar Hrachyshka <ihrachys@redhat.com>2014-06-20 22:13:38 +0200
committerIhar Hrachyshka <ihrachys@redhat.com>2014-06-20 23:29:23 +0200
commitde4adbc41419cfff9b154f463778da923f52cb6c (patch)
treeecd53c980fe73268587a8d877c4d28d148fd141d /tox.ini
parent1223cfa51877934f57221b62982ad2c44ab366a0 (diff)
downloadoslo-incubator-de4adbc41419cfff9b154f463778da923f52cb6c.tar.gz
pep8: fixed multiple violations
Fixed violations: * E128 continuation line under-indented for visual indent * E251 unexpected spaces around keyword / parameter equals * E265 block comment should start with '# ' * E713 test for membership should be 'not in' * F402 import shadowed by loop variable * H305 imports not grouped correctly * H307 like imports should be grouped together' * H402 one line docstring needs punctuation' * H703 Multiple positional placeholders Also enabled H803 check that didn't have any violations. Change-Id: I957ab273ddc61b02763d6b60b21d11ed4e73d472
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 312427ec..976bab56 100644
--- a/tox.ini
+++ b/tox.ini
@@ -32,7 +32,7 @@ commands = python -m openstack.common.lockutils python setup.py test --slowest -
[flake8]
show-source = True
-ignore = E123,E126,E128,E251,E265,E713,F402,H305,H307,H402,H405,H703,H803,H904
+ignore = E123,E126,H405,H904
exclude = .venv,.tox,dist,doc,*.egg,.update-venv
[testenv:pep8]