Monty Taylor c11ffead35 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
2013-01-14 21:35:51 +00:00

20 lines
488 B
Bash
Executable File

#!/bin/bash -xe
# 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
venv=cover
tox -e$venv
result=$?
echo "Begin pip freeze output from test virtualenv:"
echo "======================================================================"
.tox/$venv/bin/pip freeze
echo "======================================================================"
exit $result