Save tempest nosetests xunit output.

Change-Id: I527ba3c92ac5bcd07b31054e0c47fe9257ff89c0
This commit is contained in:
James E. Blair
2012-07-09 20:09:49 -07:00
parent ebfd5f2a65
commit f885f11a61
2 changed files with 7 additions and 2 deletions

View File

@@ -170,6 +170,11 @@ function cleanup_host {
# Remove duplicate logs
rm $WORKSPACE/logs/*.*.txt
# Save the tempest nosetests results
sudo cp $DEST/tempest/nosetests*.xml $WORKSPACE/
sudo chown jenkins:jenkins $WORKSPACE/nosetests*.xml
sudo chmod a+r $WORKSPACE/nosetests*.xml
# Disable detailed logging as we return to the main script
set +o xtrace
}

View File

@@ -78,10 +78,10 @@ if [ "$DEVSTACK_GATE_TEMPEST" -eq "1" ]; then
sudo -H -u stack ./tools/configure_tempest.sh
cd $DEST/tempest
echo "Running tempest smoke tests"
sudo -H -u stack nosetests --with-xunit -sv --nologcapture --attr=type=smoke tempest
sudo -H -u stack NOSE_XUNIT_FILE=nosetests-smoke.xml nosetests --with-xunit -sv --nologcapture --attr=type=smoke tempest
RETVAL=$?
if [[ $RETVAL = 0 && "$DEVSTACK_GATE_TEMPEST_FULL" -eq "1" ]]; then
echo "Running tempest full test suite"
sudo -H -u stack nosetests --with-xunit -sv --nologcapture --eval-attr='type!=smoke' tempest
sudo -H -u stack NOSE_XUNIT_FILE=nosetests-full.xml nosetests --with-xunit -sv --nologcapture --eval-attr='type!=smoke' tempest
fi
fi