Pin hacking and disable the check of mock package usage

Change-Id: Ia89b3803ffab1a36bc387f41d4f3ecaea115b0de
This commit is contained in:
Ilya Shakhat 2021-04-22 15:57:22 +04:00
parent dee99c223b
commit 75c2ae52a2
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ commands = python setup.py build_sphinx
[flake8]
# E125 continuation line does not distinguish itself from next logical line
# H404 multi line docstring should start with a summary
ignore = E125,H404,E741,W504,E305
# H216 The unittest.mock module should be used rather than the third party mock package unless actually needed.
ignore = E125,H404,E741,W504,E305,H216
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,build,*openstack/common*