From f1fbad839f263564205740870c72cfb0532e0a13 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Fri, 15 Feb 2013 16:49:48 -0800 Subject: [PATCH] Enable tempest cli tests in devstack gate Runs unittests in the folder cli in tempest repo xml file name: nosetests-cli.xml Change-Id: I441d8547326e612561db6b1a5f58c345684121b0 --- devstack-vm-gate.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devstack-vm-gate.sh b/devstack-vm-gate.sh index 60e85177..f9d2f6ce 100755 --- a/devstack-vm-gate.sh +++ b/devstack-vm-gate.sh @@ -176,6 +176,8 @@ if [ "$DEVSTACK_GATE_TEMPEST" -eq "1" ]; then if [[ "$DEVSTACK_GATE_TEMPEST_FULL" -eq "1" ]]; then echo "Running tempest full test suite" sudo -H -u stack NOSE_XUNIT_FILE=nosetests-full.xml nosetests --with-xunit -sv tempest + echo "Running tempest/cli test suite" + sudo -H -u stack NOSE_XUNIT_FILE=nosetests-cli.xml nosetests --with-xunit -sv cli else echo "Running tempest smoke tests" sudo -H -u stack NOSE_XUNIT_FILE=nosetests-smoke.xml nosetests --with-xunit -sv --attr=type=smoke tempest