diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-05-14 09:42:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-05-14 09:42:59 +0000 |
commit | a9ce66a96a950b81243d27b2fef2caf438174b35 (patch) | |
tree | 1e06f0b4f1d8a22f252d14963021d7c458fd99b8 | |
parent | fef1de1fb54179e0059c59ca8e7f20d3abf3353a (diff) | |
parent | 7c24651e4ffb74fa05097296e6f70e222ebf3990 (diff) |
Merge "modify functest-all scenario for CI, source config then recreate environment (networks, images,..) and clen it at the end of the test"
-rw-r--r-- | jjb/functest/functest.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/jjb/functest/functest.yml b/jjb/functest/functest.yml index c4dfe4eaf..7def7249a 100644 --- a/jjb/functest/functest.yml +++ b/jjb/functest/functest.yml @@ -280,8 +280,14 @@ name: functest-all builders: - shell: | + echo "Functest: prepare Functest environment" + source $HOME/functest/opnfv-openrc.sh + python $HOME/functest/config_functest.py start echo "Functest: run Functest suites" - python $HOME/.functest/run_rally.py all - python $HOME/.functest/run_rally.py smoke + python $HOME/.functest/Rally_test/run_rally.py all + python $HOME/.functest/Rally_test/run_rally.py tempest smoke python $HOME/.functest/vPing/vPing.py $HOME/.functest/ODL/start_tests.sh + echo "Functest: clean Functest environment" + python $HOME/functest/config_functest.py clean + |