From 2bae0844124a27b64b8e454ea24c05104819c183 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 8 Jun 2012 19:20:39 -0400 Subject: [PATCH] Generate two different nosetests.xml files. Change-Id: I80f0a3461640bfb5298f19b78bd8d74f4ce85f7e --- run_tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run_tests.sh b/run_tests.sh index 9fe5465175..2995c21d6e 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -272,6 +272,7 @@ function run_tests { sanity_check echo "Running Horizon application tests" + export NOSE_XUNIT_FILE=horizon/nosetests.xml ${command_wrapper} coverage erase ${command_wrapper} coverage run -p $root/manage.py test horizon --settings=horizon.tests.testsettings $testargs # get results of the Horizon tests @@ -281,6 +282,7 @@ function run_tests { if [ $selenium -eq 1 ]; then export WITH_SELENIUM=1 fi + export NOSE_XUNIT_FILE=openstack_dashboard/nosetests.xml ${command_wrapper} coverage run -p $root/manage.py test openstack_dashboard --settings=openstack_dashboard.test.settings $testargs # get results of the openstack_dashboard tests DASHBOARD_RESULT=$?