Stop running coverage xml

We do not use the xml output, so it is wasted effort.

Change-Id: I03e3eded48d30a9cf8aea0ead9559417064aa272
Reviewed-on: https://review.openstack.org/19563
Reviewed-by: James E. Blair <corvus@inaugust.com>
Approved: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
This commit is contained in:
Monty Taylor 2013-01-12 13:43:38 -08:00 committed by Jenkins
parent 3268fd0175
commit c11ffead35

View File

@ -1,11 +1,8 @@
#!/bin/bash -xe
# If a bundle file is present, call tox with the jenkins version of
# the test environment so it is used. Otherwise, use the normal
# (non-bundle) test environment. Also, run pip freeze on the
# Run coverage via tox. Also, run pip freeze on the
# resulting environment at the end so that we have a record of exactly
# what packages we ended up testing.
#
export NOSE_COVER_HTML=1
@ -13,7 +10,6 @@ venv=cover
tox -e$venv
result=$?
.tox/$venv/bin/coverage xml
echo "Begin pip freeze output from test virtualenv:"
echo "======================================================================"