Browse Source
Remove the helper script for py34, it prevents the use of arguments being passed down e.g. tox -epy34 -- --failing due to the lack of passing {posargs} to the script. Since py34 has no special exceptions now, the specific env for py34 with a special pretty_tox script is not needed. Change-Id: I4d960d82e2844c0c82a14be5e92230f1698e11b3changes/98/319598/2
2 changed files with 0 additions and 17 deletions
@ -1,12 +0,0 @@
|
||||
#!/usr/bin/env bash |
||||
|
||||
set -o pipefail |
||||
|
||||
TESTRARGS=$1 |
||||
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 |
Loading…
Reference in new issue