Fix requirements to unblock gate

Something went sideways with flake8 recently with regards to pep257
(whitespace checks). This patch updates the flake8 requirement and
disables pep257 checks to unblock the gate.

Change-Id: I139c902a4d95a21a2dcac8dcf65a85455f7331ec
This commit is contained in:
Major Hayden 2017-04-19 08:36:48 -05:00
parent 395d42d4c4
commit cf4a71bfee
No known key found for this signature in database
GPG Key ID: 737051E0C1011FB1
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,9 @@
# of appearance. Changing the order has an impact on the overall integration # of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
bashate>=0.2 # Apache-2.0 bashate>=0.2 # Apache-2.0
flake8<2.6.0,>=2.5.4 # MIT flake8>=2.5.4,<2.6.0 # MIT
flake8_docstrings==0.2.1.post1 # MIT
flake8-import-order==0.11 # LGPLv3
mock>=2.0 # BSD mock>=2.0 # BSD
# this is required for the docs build jobs # this is required for the docs build jobs

View File

@ -55,7 +55,6 @@ commands =
deps = deps =
flake8 flake8
flake8-import-order flake8-import-order
flake8-docstrings
pep8-naming pep8-naming
commands = commands =
flake8 . flake8 .
@ -65,7 +64,6 @@ basepython = python3.3
deps = deps =
flake8 flake8
flake8-import-order flake8-import-order
flake8-docstrings
pep8-naming pep8-naming
commands = commands =
flake8 . flake8 .