From eb5abe94afaa09333676457a9a689be3e42e39a4 Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Mon, 18 Apr 2016 15:32:51 +0200 Subject: Remove all the repo handling in prepare_env JIRA: FUNCTEST-203 Since almost all the repos always pull from master and latest, this is about saving some time and to avoid needing internet to pull or checkout the repos. The needed repos content has to be present in the docker image. Change-Id: Ia6e1ed2b5d5b2aff8661a38eb64a081cc8016019 Signed-off-by: jose.lausuch --- docker/run_tests.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'docker/run_tests.sh') diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 682450eea..05c78a29c 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -25,7 +25,8 @@ where: -s|--serial run tests in one thread -t|--test run specific set of tests one or more of the following separated by comma: - vping_ssh,vping_userdata,odl,onos,tempest,rally,vims,promise,doctor + healthcheck,vping_ssh,vping_userdata,odl,onos, + tempest,rally,vims,promise,doctor examples: @@ -34,9 +35,6 @@ examples: $(basename "$0") -t tempest,rally" -# Support for Functest offline -# NOTE: Still not 100% working when running the tests -offline=false report="" clean=true serial=false @@ -205,9 +203,6 @@ while [[ $# > 0 ]] exit 0 shift ;; - -o|--offline) - offline=true - ;; -r|--report) report="-r" ;; -- cgit 1.2.3-korg