summaryrefslogtreecommitdiffstats
path: root/jjb/functest
diff options
context:
space:
mode:
authormorganrOL <morgan.richomme@orange.com>2015-05-14 09:45:32 +0200
committermorganrOL <morgan.richomme@orange.com>2015-05-14 09:45:32 +0200
commit7c24651e4ffb74fa05097296e6f70e222ebf3990 (patch)
tree6fde6a772e8f649cf4b63f776367b2adef107b75 /jjb/functest
parent38b37ce3b07935864990bde3bc5e4b0bdbd0772f (diff)
modify functest-all scenario for CI, source config then recreate environment (networks, images,..) and clen it at the end of the test
JIRA: FUNCTEST-7 Change-Id: If5c2888d776f3aae4da641ed15b915926e672ae6 Signed-off-by: morganrOL <morgan.richomme@orange.com>
Diffstat (limited to 'jjb/functest')
-rw-r--r--jjb/functest/functest.yml10
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
+