From 0f404028248367a457d5256a090c4030da06ddbc Mon Sep 17 00:00:00 2001 From: Attila Fazekas Date: Fri, 7 Dec 2012 09:38:00 +0100 Subject: [PATCH] Enable log capturing * Fixing 'No handlers could be found for logger "tempest.common.rest_client"' * Adds verbose log about the ERROR and FAIL events, just after all test cases finished Change-Id: Icf14f3505fe8f36db956af6fbb734d5d9e1c32e5 --- devstack-vm-gate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devstack-vm-gate.sh b/devstack-vm-gate.sh index 4bf2d84e..5d5e5656 100755 --- a/devstack-vm-gate.sh +++ b/devstack-vm-gate.sh @@ -159,11 +159,11 @@ fi if [ "$DEVSTACK_GATE_TEMPEST" -eq "1" ]; then cd $BASE/new/tempest echo "Running tempest smoke tests" - sudo -H -u stack NOSE_XUNIT_FILE=nosetests-smoke.xml nosetests --with-xunit -sv --nologcapture --attr=type=smoke tempest + sudo -H -u stack NOSE_XUNIT_FILE=nosetests-smoke.xml nosetests --with-xunit -sv --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 NOSE_XUNIT_FILE=nosetests-full.xml nosetests --with-xunit -sv --nologcapture -a '!smoke' tempest + sudo -H -u stack NOSE_XUNIT_FILE=nosetests-full.xml nosetests --with-xunit -sv -a '!smoke' tempest fi else # Jenkins expects at least one nosetests file. If we're not running