diff options
author | Steve Martinelli <stevemar@ca.ibm.com> | 2014-09-11 15:04:00 -0400 |
---|---|---|
committer | Steve Martinelli <stevemar@ca.ibm.com> | 2014-09-11 15:04:00 -0400 |
commit | 288f41139611b3b5797c150470e78d559d31eb87 (patch) | |
tree | e86009933540c38e6fb8b7815210b6b7cdbe7f4d /tools | |
parent | abb3c4ef00c2260d9ac823d0580ee2baa788c9bf (diff) | |
download | pycadf-288f41139611b3b5797c150470e78d559d31eb87.tar.gz |
Use oslo_debug_helper and remove our own version
With the latest version of oslotest, we can now take advantage
of a common oslo_debug_helper script.
We can now remove our own homebrewed version, minor changes to
tox.ini were needed.
Change-Id: Ifd5d0454e424ecfca0db30d3d3f6350ba7db1b60
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/debug_helper.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/debug_helper.sh b/tools/debug_helper.sh deleted file mode 100755 index 0380cf7..0000000 --- a/tools/debug_helper.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/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 ./ ./pycadf/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 |