From a1e5c1c03970d3966673e9aefc5a367ea9f3c178 Mon Sep 17 00:00:00 2001 From: Chuck Short Date: Wed, 27 Jun 2018 14:54:54 -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 Depends-On: https://review.openstack.org/560493 Change-Id: I7149bd55da66479bda83e8bd2dd2b806e7394342 Signed-off-by: Chuck Short Co-Authored-By: Nguyen Hai --- test-requirements.txt | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test-requirements.txt b/test-requirements.txt index 0aa523c..07ffc34 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -22,7 +22,7 @@ testscenarios>=0.4 # Apache-2.0/BSD testtools>=2.2.0 # MIT psutil>=3.2.2 # BSD oslotest>=1.10.0 # Apache-2.0 -os-testr>=1.0.0 # Apache-2.0 +stestr>=1.0.0 # Apache-2.0 # Optional packages that should be installed when testing PyMySQL>=0.7.6 # MIT License diff --git a/tox.ini b/tox.ini index 4864e30..cdc516b 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstac deps = -r{toxinidir}/test-requirements.txt commands = /bin/rm -f .testrepository/times.dbm - ostestr --slowest {posargs} + stestr run --slowest {posargs} whitelist_externals = bash passenv = *_proxy *_PROXY