summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-03-20 16:04:47 +0000
committerGerrit Code Review <review@openstack.org>2017-03-20 16:04:47 +0000
commite3eac21382d73aa3c648a36fd51afa7cd25fca0a (patch)
treee41c156c96cdcc712707b297383dab30d2ab27b9 /tools
parent5e252d1c66c205d395b27e28cda0e6739876762c (diff)
parent8e34aece1ae0fefae6c982efe2f1ec442bc028ca (diff)
downloadnova-e3eac21382d73aa3c648a36fd51afa7cd25fca0a.tar.gz
Merge "More usage of ostestr and cleanup an unused dependency"
Diffstat (limited to 'tools')
-rwxr-xr-xtools/pretty_tox.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/pretty_tox.sh b/tools/pretty_tox.sh
deleted file mode 100755
index 799ac18487..0000000000
--- a/tools/pretty_tox.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-
-set -o pipefail
-
-TESTRARGS=$1
-
-# --until-failure is not compatible with --subunit see:
-#
-# https://bugs.launchpad.net/testrepository/+bug/1411804
-#
-# this work around exists until that is addressed
-if [[ "$TESTARGS" =~ "until-failure" ]]; then
- python setup.py testr --slowest --testr-args="$TESTRARGS"
-else
- python setup.py testr --slowest --testr-args="--subunit $TESTRARGS" | subunit-trace -f
-fi