Merge "Debug env for tox"

This commit is contained in:
Jenkins 2013-12-12 00:25:24 +00:00 committed by Gerrit Code Review
commit 52cb8fe0c5
2 changed files with 23 additions and 0 deletions

18
tools/debug_helper.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
TMP_DIR=`mktemp -d` || exit 1
trap "rm -rf $TMP_DIR" EXIT
ALL_TESTS=$TMP_DIR/all_tests
TESTS_TO_RUN=$TMP_DIR/ks_to_run
python -m testtools.run discover -t ./ ./keystone/tests --list > $ALL_TESTS
if [ "$1" ]
then
grep "$1" < $ALL_TESTS > $TESTS_TO_RUN
else
mv $ALL_TESTS $TESTS_TO_RUN
fi
STANDARD_THREADS=1 python -m testtools.run discover --load-list $TESTS_TO_RUN

View File

@ -27,6 +27,11 @@ commands = python setup.py testr --coverage --testr-args='{posargs}'
[testenv:venv]
commands = {posargs}
[testenv:debug]
commands =
{toxinidir}/tools/debug_helper.sh {posargs}
[flake8]
filename= *.py,keystone-*
show-source = true