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
This commit is contained in:
Matthew Treinish
2017-11-21 19:01:11 -05:00
parent 8628c75738
commit 9c56c78513
6 changed files with 28 additions and 51 deletions
-15
View File
@@ -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