cdb7f549a9
This commit removes the tempest copy of subunit-trace and uses the entry-point from tempest-lib instead. Partially implements bp tempest-library Change-Id: Ic1aeddc2d0b217c41b6b9914ac3f269b80c4ec8e
15 lines
195 B
Bash
Executable File
15 lines
195 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o pipefail
|
|
|
|
TESTRARGS=$@
|
|
|
|
if [ ! -d .testrepository ]; then
|
|
testr init
|
|
fi
|
|
testr run --subunit $TESTRARGS | subunit-trace -f -n
|
|
retval=$?
|
|
testr slowest
|
|
|
|
exit $retval
|