Rip out the tempest coverage runs from devstack-gate

The coverage extension has been removed from nova so there is no
reason to keep the devstack-gate support around.

Change-Id: Ic580c0523eff64d7f00d16da0f04c1616e30b9c8
This commit is contained in:
Matthew Treinish
2013-12-03 11:41:51 -05:00
parent 583b1dc505
commit 706dc0e2b3
2 changed files with 0 additions and 15 deletions

View File

@@ -375,10 +375,6 @@ function cleanup_host {
sudo cp $BASE/new/tempest/nosetests*.xml $WORKSPACE/
sudo chown jenkins:jenkins $WORKSPACE/nosetests*.xml
sudo chmod a+r $WORKSPACE/nosetests*.xml
if [ $DEVSTACK_GATE_TEMPEST_COVERAGE -eq "1" ] ; then
sudo mkdir $WORKSPACE/logs/coverage-report/
sudo cp $BASE/new/tempest/coverage-report/* $WORKSPACE/logs/coverage-report/
fi
# Disable detailed logging as we return to the main script
set +o xtrace
@@ -454,9 +450,6 @@ export DEVSTACK_GATE_POSTGRES=${DEVSTACK_GATE_POSTGRES:-0}
# Set to 1 to use zeromq instead of rabbitmq (or qpid)
export DEVSTACK_GATE_ZEROMQ=${DEVSTACK_GATE_ZEROMQ:-0}
# Set to 1 to run nova coverage with Tempest
export DEVSTACK_GATE_TEMPEST_COVERAGE=${DEVSTACK_GATE_TEMPEST_COVERAGE:-0}
# Set to 1 to run tempest stress tests
export DEVSTACK_GATE_TEMPEST_STRESS=${DEVSTACK_GATE_TEMPEST_STRESS:-0}

View File

@@ -133,10 +133,6 @@ EOF
echo "HEAT_CREATE_TEST_IMAGE=True" >>localrc
fi
if [ "$DEVSTACK_GATE_TEMPEST_COVERAGE" -eq "1" ] ; then
echo "EXTRA_OPTS=(backdoor_port=0)" >>localrc
fi
if [ "$DEVSTACK_GATE_POSTGRES" -eq "1" ]; then
cat <<\EOF >>localrc
disable_service mysql
@@ -303,10 +299,6 @@ if [ "$DEVSTACK_GATE_TEMPEST" -eq "1" ]; then
echo "Running tempest full test suite with testr"
sudo -H -u tempest tox -etestr-full
res=$?
elif [[ "$DEVSTACK_GATE_TEMPEST_COVERAGE" -eq "1" ]] ; then
echo "Generating coverage report"
sudo -H -u tempest tox -ecoverage -- -o $BASE/new/tempest/coverage-report
res=$?
elif [[ "$DEVSTACK_GATE_TEMPEST_STRESS" -eq "1" ]] ; then
echo "Running stress tests"
sudo -H -u tempest tox -estress