Run additional tempest tests as part of the OVSDB CI job 97/15597/1
authorKyle Mestery <mestery@mestery.com>
Wed, 11 Feb 2015 09:39:37 +0000 (09:39 +0000)
committerKyle Mestery <mestery@mestery.com>
Wed, 11 Feb 2015 09:40:36 +0000 (09:40 +0000)
This adds the running of some additional tempest tests for the upstream
OpenStack and OpenDaylight third-party CI job for OVSDB. This an
incremental step along the way to being able to run a full tempest
smoke test.

Change-Id: I6b38c4e48064cb293feb8586f32d5f005a7ec5e0
Signed-off-by: Kyle Mestery <mestery@mestery.com>
jjb/ovsdb/include-raw-openstack-ci.sh

index adfeef181d2f9682e46e1aa86851fcbbe516d047..723c07e1a61a9019175bcbadd235c5c977c3b216 100644 (file)
@@ -176,7 +176,11 @@ if [[ -n ${BUILD_ID} ]]; then
     echo "Running tempest tests:" > /tmp/${log_for_review}
     echo "" >> /tmp/${log_for_review}
     testr init > /dev/null 2>&1 || true
-    cmd="testr run  tempest.api.network.test_networks"
+    cmd_api="tempest.api.network.test_networks \
+             tempest.api.network.test_networks_negative \
+             tempest.api.network.test_ports tempest.api.network.test_routers"
+    cmd_net_basic="tempest.scenario.test_network_basic_ops"
+    cmd="testr run $cmd_api $cmd_net_basic"
     echo "opendaylight-test:$ "${cmd}  >> /tmp/${log_for_review}
     ${cmd} >> /tmp/${log_for_review}
     echo "" >> /tmp/${log_for_review}