diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-03-11 19:16:09 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-03-11 20:06:54 +0100 |
commit | eb973db776e77781c875d2640c4d59f878ba27c0 (patch) | |
tree | ce1f9247c82a4ffce9c717cda35bed67c5d0c9de /tox.ini | |
parent | a1a2fa10cd8cffbe7dc4cffec3446aafe73d87ba (diff) |
Fix many pylint warnings
Only pylint warnings in vnf modules has to be fixed now.
Change-Id: Ie71230072a51bb72ec0b1d4fef2652494d29948e
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -48,13 +48,14 @@ modules = functest.tests.unit.openstack.tempest functest.tests.unit.openstack.vping functest.tests.unit.vnf.router + functest.tests.unit.utils functest.utils.config functest.utils.constants functest.utils.env functest.utils.functest_utils commands = bash -c "\ - pylint -f parseable --disable=locally-disabled functest | \ + pylint -f parseable --ignore-imports=y --disable=locally-disabled functest | \ tee pylint.out | sed -ne '/Raw metrics/,//p'" pylint --reports=n --errors-only functest pylint --disable=locally-disabled --ignore-imports=y --reports=n {[testenv:pylint]modules} |