From 98ed725a117a4be2335160444c308a871b65be90 Mon Sep 17 00:00:00 2001 From: Charles Short Date: Sun, 3 Jun 2018 06:16:40 -0400 Subject: [PATCH] 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 --- .gitignore | 1 + test-requirements.txt | 2 +- tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b142a65..e883f18 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ pip-log.txt .tox nosetests.xml .testrepository +.stestr .venv cover diff --git a/test-requirements.txt b/test-requirements.txt index 58db9d6..dc44e63 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -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 diff --git a/tox.ini b/tox.ini index 42fc997..ec90ff5 100644 --- a/tox.ini +++ b/tox.ini @@ -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]