Switch to using stestr

According to Openstack summit session [1] stestr is
maintained project to which all Openstack projects
should migrate.
Let's switch it then.

[1] https://etherpad.openstack.org/p/YVR-python-pti

Change-Id: I39e56868bb974b4f84986581d2436ca5791a092b
Signed-off-by: Charles Short <zulcss@gmail.com>
This commit is contained in:
Charles Short 2018-06-03 06:16:40 -04:00 committed by Sean McGinnis
parent b3041b1bf1
commit 98ed725a11
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -32,6 +32,7 @@ pip-log.txt
.tox
nosetests.xml
.testrepository
.stestr
.venv
cover

View File

@ -11,4 +11,4 @@ oslotest>=3.2.0 # Apache-2.0
testrepository>=0.0.18 # Apache-2.0/BSD
testscenarios>=0.4 # Apache-2.0/BSD
testtools>=2.2.0 # MIT
os-testr>=1.0.0 # Apache-2.0
stestr>=1.0.0 # Apache-2.0

View File

@ -17,7 +17,7 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
find . -type f -name "*.pyc" -delete
ostestr {posargs}
stestr run {posargs}
whitelist_externals = find
[testenv:pep8]