From d008bbcab59eda68cf83072d986c42d50664c576 Mon Sep 17 00:00:00 2001 From: Chuck Short Date: Fri, 29 Jun 2018 12:04:52 -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: I5a184338147c858420b131e90837b7430fbf284c Signed-off-by: Chuck Short --- test-requirements.txt | 2 +- tox.ini | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test-requirements.txt b/test-requirements.txt index c0cf4e9..53b3732 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -9,7 +9,7 @@ hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0 mock>=2.0.0 # BSD funcsigs>=1.0.0;python_version=='2.7' or python_version=='2.6' # Apache-2.0 -os-testr>=1.0.0 # Apache-2.0 +stestr>=1.0.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2.0 testrepository>=0.0.18 # Apache-2.0/BSD SQLAlchemy!=1.1.5,!=1.1.6,!=1.1.7,!=1.1.8,>=1.0.10 # MIT diff --git a/tox.ini b/tox.ini index 65716aa..de9953d 100644 --- a/tox.ini +++ b/tox.ini @@ -22,8 +22,7 @@ deps = .[jira_plugin] commands = find . -type f -name "*.pyc" -delete - rm -Rf .testrepository/times.dbm - ostestr {posargs} + stestr run {posargs} [testenv:cover] basepython = python3