summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMatthew Treinish <mtreinish@kortar.org>2017-11-21 19:01:11 -0500
committerMatthew Treinish <mtreinish@kortar.org>2017-11-24 16:51:12 -0500
commit9c56c7851329f104bb3d59f1a7e90fe7650bd44a (patch)
tree38193ebdf724dd7bc291595ab399d1161e9fa972 /tools
parent8628c75738d6ad343d66247ca9e7fe4e0304cefb (diff)
downloadnova-9c56c7851329f104bb3d59f1a7e90fe7650bd44a.tar.gz
Finish stestr migration
Nova switched to using stestr for all it's in tree testing except for the coverage job. This commit updates that job so it also uses stestr and cleans up the last bits of testr setup left in tree. As part of this change this moves all the one off per job configuration into the tox job definitions instead of hiding it in either the .stestr.conf or in a wrapper script. Change-Id: I36e0e791d485b44641a1ed8770eca8e95aca19be
Diffstat (limited to 'tools')
-rwxr-xr-xtools/pretty_tox3.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/pretty_tox3.sh b/tools/pretty_tox3.sh
deleted file mode 100755
index ffc0e58f36..0000000000
--- a/tools/pretty_tox3.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env bash
-
-TESTRARGS=$1
-
-if [ $OS_TEST_PATH = './nova/tests/functional' ]; then
- blacklist_file=tests-functional-py3.txt
-else
- blacklist_file=tests-py3.txt
-fi
-
-if [ -z "$TESTRARGS" ]; then
- stestr run --blacklist-file $blacklist_file
-else
- stestr run "$TESTRARGS"
-fi