summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorChaozhe.Chen <chaozhe.chen@easystack.cn>2016-02-23 22:57:40 +0800
committerChaozhe.Chen <chaozhe.chen@easystack.cn>2016-02-24 00:36:12 +0800
commit332c7f98bea5b4fc4a50cca95798564e3294d2f9 (patch)
treeb74e1f525ebc7e382254303f19565906617462da /tox.ini
parent9e32b8f19d876be714b52b63b8d89be76927af38 (diff)
downloadoslo-middleware-332c7f98bea5b4fc4a50cca95798564e3294d2f9.tar.gz
Clean up removed hacking rule from [flake8] ignore lists
We bump hacking>=0.10.0, and hacking removed some rules, for the full list of rules please see [1]. So don't need them any more. Hacking related commits: Remove H904 in commit b1fe19ebebe47a36b905d709467f5e82521bbd96 Remove H803 in commit f01ce4fd822546cbd52a0aedc49184bddbfe1b10 Remove H305 in commit 8f1fcbdb9aa4fc61349e5e879153c722195b1233 [1]https://github.com/openstack-dev/hacking/blob/master/setup.cfg#L30 Change-Id: Iac1c3097453c205e17b4894ac28a821b2ccf08b5
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 1117f30..9ff7d03 100644
--- a/tox.ini
+++ b/tox.ini
@@ -19,11 +19,10 @@ commands = python setup.py build_sphinx
commands = python setup.py test --coverage --coverage-package-name=oslo_middleware --testr-args='{posargs}'
[flake8]
-# H803 skipped on purpose per list discussion.
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
-ignore = E123,E125,H305,H803,H904
+ignore = E123,E125
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,__init__.py
[hacking]