Remove the config of promise
[functest-xtesting.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 978b3f6..7299a1d 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = docs,pep8,pylint,py35,py27,perm,aarch64
+envlist = docs,pep8,pylint,py35,py27,perm,cover
 
 [testenv]
 usedevelop = True
@@ -42,6 +42,20 @@ commands =
     tee pylint.out | sed -ne '/Raw metrics/,//p'"
   pylint --disable=locally-disabled --reports=n {[testenv:pylint]modules}
 
+[testenv:yamllint]
+basepython = python2.7
+files =
+  docker/components/testcases.yaml
+  docker/healthcheck/testcases.yaml
+  docker/smoke/testcases.yaml
+  docker/parser/testcases.yaml
+  docker/features/testcases.yaml
+  docker/vnf/testcases.yaml
+  functest/ci/testcases.yaml
+commands =
+  yamllint {[testenv:yamllint]files}
+  - yamllint functest
+
 [testenv:py35]
 dirs =
   functest/tests/unit/core
@@ -49,6 +63,19 @@ dirs =
   functest/tests/unit/utils/test_decorators.py
 commands = nosetests {[testenv:py35]dirs}
 
+[testenv:cover]
+basepython = python2.7
+dirs =
+  functest/tests/unit/core
+  functest/tests/unit/odl
+  functest/tests/unit/utils/test_decorators.py
+commands = nosetests --with-coverage --cover-tests \
+  --cover-package functest.core \
+  --cover-package functest.opnfv_tests.sdn.odl \
+  --cover-package functest.tests.unit \
+  --cover-package functest.utils.decorators \
+  --cover-min-percentage 100 {[testenv:cover]dirs}
+
 [testenv:perm]
 basepython = python2.7
 whitelist_externals = bash
@@ -59,12 +86,3 @@ commands =
     -exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
   bash -c "\
     find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"
-
-[testenv:aarch64]
-basepython = python2.7
-whitelist_externals =
-  bash
-  git
-commands =
-  bash -c "patch -f -p1 < docker/Dockerfile.aarch64.patch"
-  git checkout docker/Dockerfile