From c11ffead35cb2dca64297d83b7eae001a93745da Mon Sep 17 00:00:00 2001
From: Monty Taylor <mordred@inaugust.com>
Date: Sat, 12 Jan 2013 13:43:38 -0800
Subject: [PATCH] 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
---
 modules/jenkins/files/slave_scripts/run-cover.sh | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/modules/jenkins/files/slave_scripts/run-cover.sh b/modules/jenkins/files/slave_scripts/run-cover.sh
index d0806eacbb..292c511fd2 100755
--- a/modules/jenkins/files/slave_scripts/run-cover.sh
+++ b/modules/jenkins/files/slave_scripts/run-cover.sh
@@ -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 "======================================================================"