Lock down flake8 version

The new flake8 version 3.6.0 introduces new warnings that cause
the check and gate jobs to fail. Locking down the flake8 version
to avoid these surprises in the future. We can later increment
the flake8 version and fix the new warnings in a controlled
manner.

Change-Id: Iced6ff91591616ade3c5cd5b0dd67f310227bdc9
Partial-Bug: 1799721
Signed-off-by: Bart Wensley <barton.wensley@windriver.com>
This commit is contained in:
Bart Wensley 2018-10-24 10:00:33 -05:00
parent fd09e1b43d
commit 08c1f652ee
3 changed files with 3 additions and 3 deletions

View File

@ -18,5 +18,5 @@ commands = {posargs}
[testenv:flake8]
basepython = python2.7
deps = flake8
deps = flake8<3.6.0
commands = flake8 {posargs}

View File

@ -30,7 +30,7 @@ commands = pylint {posargs} controllerconfig --rcfile=./pylint.rc --extension-pk
[testenv:flake8]
basepython = python2.7
deps = flake8
deps = flake8<3.6.0
commands = flake8 {posargs}
[flake8]

View File

@ -84,7 +84,7 @@ builtins = _
[testenv:flake8]
basepython = python2.7
deps = flake8
deps = flake8<3.6.0
commands =
flake8 {posargs} . \
sysinv/cmd/manage-partitions \