Fix code that is supposed to exclude smoke tests from "full run" in gate jobs.

The nose expression was incorrect.

Change-Id: I4bae634b6926a55149803b9b9bd04f46b8a85694
This commit is contained in:
David Kranz
2013-01-22 10:57:19 -05:00
parent 64b172c4ba
commit 13e85345d2

View File

@@ -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"