From 13e85345d2c0c36d79ba86757d476b2769b4ac99 Mon Sep 17 00:00:00 2001 From: David Kranz Date: Tue, 22 Jan 2013 10:57:19 -0500 Subject: [PATCH] Fix code that is supposed to exclude smoke tests from "full run" in gate jobs. The nose expression was incorrect. Change-Id: I4bae634b6926a55149803b9b9bd04f46b8a85694 --- devstack-vm-gate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack-vm-gate.sh b/devstack-vm-gate.sh index 6e8c019b..9fd32648 100755 --- a/devstack-vm-gate.sh +++ b/devstack-vm-gate.sh @@ -177,7 +177,7 @@ if [ "$DEVSTACK_GATE_TEMPEST" -eq "1" ]; then RETVAL=$? if [[ $RETVAL = 0 && "$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 -a '!smoke' tempest + sudo -H -u stack NOSE_XUNIT_FILE=nosetests-full.xml nosetests --with-xunit -sv -A 'not type or type != "smoke"' tempest fi if [[ "$DEVSTACK_GATE_TEMPEST_COVERAGE" -eq "1" ]] ; then echo "Generating coverage report"