summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorVu Cong Tuan <tuanvc@vn.fujitsu.com>2018-07-12 15:23:08 +0700
committerVu Cong Tuan <tuanvc@vn.fujitsu.com>2018-07-16 15:43:48 +0700
commit32a3244bb4879f5c0ea430de6fac284b2a987441 (patch)
tree23e6ac39d8f500cf3b903a88a4a10ec59634cc96 /tools
parent2e6ef0c45a6ada10440eb0ce87df74bf7070c1e4 (diff)
downloadpython-novaclient-32a3244bb4879f5c0ea430de6fac284b2a987441.tar.gz
Switch to stestr
According to Openstack summit session [1], stestr is maintained project to which all Openstack projects should migrate. Let's switch to stestr as other projects have already moved to it. [1] https://etherpad.openstack.org/p/YVR-python-pti Change-Id: I55060b1d99b9a00b20c98fbb429d072568265695
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 799ac184..00000000
--- 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