From f95a5d912eb65c507c1d67981b10c6f5ea790615 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Thu, 22 Nov 2018 17:15:46 +0100 Subject: Rate python files via pylint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It higlights programming errors which are only printed for the time being. It adds pylint in test-requirements.txt as it should have been for coverage, mock, etc. At least all pylint errors should be fixed. Kilo and Newton are out of scope as deprecated. Issue-ID: MULTICLOUD-416 Change-Id: I35f2cfec0327ba163e796b05bdff5edf0246de09 Signed-off-by: Cédric Ollivier --- windriver/tox.ini | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'windriver/tox.ini') diff --git a/windriver/tox.ini b/windriver/tox.ini index dd34e479..e5a65d39 100644 --- a/windriver/tox.ini +++ b/windriver/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,cov +envlist = py27,cov,pylint skipsdist = true [tox:jenkins] @@ -13,7 +13,9 @@ max-complexity = 27 [testenv] setenv = PYTHONPATH = {toxinidir}/../share -deps = -r{toxinidir}/requirements.txt +deps = + -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt commands = coverage run --branch manage.py test titanium_cloud coverage report --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*,*starlingx_base*" --fail-under=30 @@ -25,3 +27,8 @@ commands=flake8 [testenv:cov] commands = coverage xml --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*, *site-packages*" +[testenv:pylint] +whitelist_externals = bash +commands = + bash -c "\ + pylint -f parseable --reports=y titanium_cloud | tee pylint.out" -- cgit 1.2.3-korg