diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-03-12 14:42:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-12 14:42:23 +0000 |
commit | 42867b6f9bd8053b4d91ee0fc1fd127ae2919f15 (patch) | |
tree | 2f25590f0f9ca8719b3853ef873589c35760a8c3 /tox.ini | |
parent | aedd8d57351150bb97dc4d23bc5d0b3e5eb76db9 (diff) | |
parent | 1bdf68f6ed2d55d72d47c0ee4c7a7bc286c4ca3d (diff) |
Merge changes from topic 'refactor_tempest'
* changes:
Rewrite refstack testcase
Fix many pylint warnings
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -33,7 +33,7 @@ modules = functest.ci functest.cli functest.opnfv_tests.openstack.rally - functest.opnfv_tests.openstack.refstack_client + functest.opnfv_tests.openstack.refstack functest.opnfv_tests.openstack.snaps functest.opnfv_tests.openstack.tempest functest.opnfv_tests.openstack.vping @@ -43,21 +43,23 @@ modules = functest.tests.unit.cli functest.tests.unit.odl functest.tests.unit.openstack.rally - functest.tests.unit.openstack.refstack_client functest.tests.unit.openstack.snaps 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} + pylint --disable=locally-disabled \ + --disable=duplicate-code \ + --ignore-imports=y --reports=n {[testenv:pylint]modules} [testenv:yamllint] basepython = python2.7 |