summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2013-06-09 11:07:27 +0200
committerDirk Mueller <dirk@dmllr.de>2013-06-22 16:00:26 +0200
commit62579fbb217f4c1a4668e793ebaafaf668619206 (patch)
tree8a791ee5b60248ecc5f59b895c1e4049529ab918 /tox.ini
parentd8a537c7fe9b1e455831d05d9ba0ab67e03fb3a5 (diff)
downloadpython-glanceclient-62579fbb217f4c1a4668e793ebaafaf668619206.tar.gz
Start using Pyflakes and Hacking
Instead of globally ignoring pyflakes and hacking warnings, only blacklist those that trigger very frequently so far, in order to clean them up in followup commits. Fix and start gating on the rest already. Change-Id: Ied7c7250061e3bf379e8286e8ce3b9e4af817faf
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 318a363..dcbbe34 100644
--- a/tox.ini
+++ b/tox.ini
@@ -26,6 +26,10 @@ commands = python setup.py testr --coverage --testr-args='{posargs}'
downloadcache = ~/cache/pip
[flake8]
-ignore = F,H
+# H302 import only modules
+# H303 no wildcard import
+# H306 imports not in alphabetical orde
+# H404 multi line docstring should start with a summary
+ignore = F403,F841,F812,F821,H302,H303,H306,H404
show-source = True
exclude = .venv,.tox,dist,doc,*egg