summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-06-29 16:31:22 +0000
committerGerrit Code Review <review@openstack.org>2016-06-29 16:31:23 +0000
commitd68acca919eae35627f32d6bcf85f1bfdf9ad030 (patch)
tree46809ec6e61f3b8edd68cc20b40921cba4ba7261 /tools
parentfe5d56b14b41a1d590b9d76c155ea174edf2e9ce (diff)
parent0196f4676e8dc5d97e73399aed52c30142105538 (diff)
downloadnova-d68acca919eae35627f32d6bcf85f1bfdf9ad030.tar.gz
Merge "Add ability to select specific tests for py34"
Diffstat (limited to 'tools')
-rwxr-xr-xtools/pretty_tox3.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/pretty_tox3.sh b/tools/pretty_tox3.sh
new file mode 100755
index 0000000000..396968111c
--- /dev/null
+++ b/tools/pretty_tox3.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+TESTRARGS=$1
+
+if [ -z "$TESTRARGS" ]; then
+ ostestr --blacklist_file tests-py3.txt
+else
+ ostestr -r "$TESTRARGS"
+fi