diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-02-28 09:35:49 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-02-28 09:36:32 +0100 |
commit | 2aab5c48df64b044ab9bae6e883e6e0acaabbf52 (patch) | |
tree | c82294952795b3953130bf624929d6ecae3e4fcf /tox.ini | |
parent | baa8f2d5f67d45e5761f92cb93fe22050f08d0fe (diff) |
Rename all Functest refs to Xtesting
It mainly renames python modules and then the related documentation
config files.
Change-Id: I186010bb88d3d39afe7b8fd1ebcef9c690cc1282
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 36 |
1 files changed, 18 insertions, 18 deletions
@@ -12,10 +12,10 @@ install_command = pip install {opts} {packages} commands = nosetests --with-xunit \ --with-coverage \ --cover-tests \ - --cover-package=functest \ + --cover-package=xtesting \ --cover-xml \ --cover-html \ - functest/tests/unit + xtesting/tests/unit [testenv:docs] basepython = python2.7 @@ -29,37 +29,37 @@ commands = flake8 basepython = python2.7 whitelist_externals = bash commands = - pylint --disable=locally-disabled --ignore-imports=y --reports=n functest + pylint --disable=locally-disabled --ignore-imports=y --reports=n xtesting [testenv:yamllint] basepython = python2.7 files = - functest/ci + xtesting/ci commands = yamllint -s {[testenv:yamllint]files} [testenv:py35] dirs = - functest/tests/unit/ci - functest/tests/unit/core - functest/tests/unit/energy - functest/tests/unit/utils + xtesting/tests/unit/ci + xtesting/tests/unit/core + xtesting/tests/unit/energy + xtesting/tests/unit/utils commands = nosetests {[testenv:py35]dirs} [testenv:cover] basepython = python2.7 dirs = - functest/tests/unit/ci - functest/tests/unit/core - functest/tests/unit/energy - functest/tests/unit/utils/test_decorators.py + xtesting/tests/unit/ci + xtesting/tests/unit/core + xtesting/tests/unit/energy + xtesting/tests/unit/utils/test_decorators.py commands = nosetests --with-coverage --cover-tests \ - --cover-package functest.ci.tier_builder \ - --cover-package functest.ci.tier_handler \ - --cover-package functest.core \ - --cover-package functest.energy \ - --cover-package functest.tests.unit \ - --cover-package functest.utils.decorators \ + --cover-package xtesting.ci.tier_builder \ + --cover-package xtesting.ci.tier_handler \ + --cover-package xtesting.core \ + --cover-package xtesting.energy \ + --cover-package xtesting.tests.unit \ + --cover-package xtesting.utils.decorators \ --cover-min-percentage 100 {[testenv:cover]dirs} [testenv:perm] |