Move to hacking 0.10

Release notes:
http://git.openstack.org/cgit/openstack-dev/hacking/tag/?id=0.10.0

H803 is no longer enforced by hacking so the ignore is removed.

Change-Id: Ifaf62839a4b6da62a3b380396158b463c1381026
This commit is contained in:
Brant Knudson 2015-01-11 18:16:27 -06:00
parent a68636d9bf
commit d88401d6f1
2 changed files with 7 additions and 3 deletions

View File

@ -2,10 +2,11 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking>=0.10.0,<0.11
coverage>=3.6
discover
fixtures>=0.3.14
hacking>=0.8.0,<0.9
mock>=1.0
pycrypto>=2.6
oslosphinx>=2.2.0 # Apache-2.0

View File

@ -32,10 +32,13 @@ downloadcache = ~/cache/pip
commands = oslo_debug_helper {posargs}
[flake8]
# E122: continuation line missing indentation or outdented
# F821: undefined name
# H238: old style class declaration, use new style (inherit from `object`)
# H304: no relative imports
# H803 Commit message should not end with a period (do not remove per list discussion)
ignore = F821,H304,H803
# H405: multi line docstring summary not separated with an empty line
# H703: Multiple positional placeholders
ignore = E122,F821,H238,H304,H405,H703
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*