Fix slowest test output after test run

This commit fixes the output from pretty_tox.sh so that the testr
slowest output is gobbled up by the pipe into subunit-trace.

Change-Id: I4e23cb3c3773e58a297416c1f51996fef059330a
This commit is contained in:
Matthew Treinish 2015-01-11 16:53:21 -05:00
parent a6aefaa34b
commit 9a510e85ce

View File

@ -7,5 +7,10 @@ set -o pipefail
TESTRARGS=$1 TESTRARGS=$1
python setup.py testr --slowest --testr-args="--subunit $TESTRARGS" | subunit-trace -f python setup.py testr --testr-args="--subunit $TESTRARGS" | subunit-trace -f
retval=$?
# NOTE(mtreinish) The pipe above would eat the slowest display from pbr's testr
# wrapper so just manually print the slowest tests
echo -e "\nSlowest Tests:\n"
testr slowest
exit $retval