From 2aab5c48df64b044ab9bae6e883e6e0acaabbf52 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 28 Feb 2018 09:35:49 +0100 Subject: Rename all Functest refs to Xtesting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It mainly renames python modules and then the related documentation config files. Change-Id: I186010bb88d3d39afe7b8fd1ebcef9c690cc1282 Signed-off-by: Cédric Ollivier --- tox.ini | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index f01d3d05..3cac9318 100644 --- a/tox.ini +++ b/tox.ini @@ -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] -- cgit 1.2.3-korg