Set maximum pylint version

It turns out that pylint 1.7 introduced additional checks that
are failing against fuel-qa code. It is reasonable to prevent
new checks for stable branches and the best way to do so is to
pin pylint version.

Change-Id: Iae7506dacd93be9a76e1800ab3091dc715fb8ed5
Closes-bug: #1690410
This commit is contained in:
Alexey Stupnikov 2017-05-12 18:49:55 +03:00
parent ef0adc9766
commit 9643b30357
1 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ count = True
[testenv:pylint]
deps=
{[testenv]deps}
pylint
pylint<1.7
commands=
pylint --rcfile=.pylintrc_gerrit fuelweb_test system_test gates_tests fuel_tests run_system_test core
@ -61,19 +61,19 @@ commands=
[testenv:pylint-py27-fuelweb]
deps=
{[testenv]deps}
pylint
pylint<1.7
commands=pylint fuelweb_test
[testenv:pylint-py27-system]
deps=
{[testenv]deps}
pylint
pylint<1.7
commands=pylint system_test
[testenv:pylint-py27-gates]
deps=
{[testenv]deps}
pylint
pylint<1.7
commands=pylint gates_tests
[testenv:pylint-py27-fuel]