From f2ee99e68e1e63a316a1f9aaddda608f1758901d Mon Sep 17 00:00:00 2001 From: Charles Short Date: Wed, 20 Jun 2018 09:40:12 -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: Ib1f69777740eceece1e4d4e1ef6979383fb714d7 Signed-off-by: Charles Short --- .stestr.conf | 3 +++ tox.ini | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .stestr.conf diff --git a/.stestr.conf b/.stestr.conf new file mode 100644 index 0000000..2e3c9f4 --- /dev/null +++ b/.stestr.conf @@ -0,0 +1,3 @@ +[DEFAULT] +test_path=${OS_TEST_PATH:-./ceilosca/ceilometer/tests} +top_dir=./ diff --git a/tox.ini b/tox.ini index 0018649..ae63a86 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ install_command = pip install -U {opts} {packages} deps = -r{toxinidir}/test-requirements.txt commands = find . -type f -name "*.pyc" -delete python monasca_test_setup.py - ostestr --serial {posargs} + stestr run --serial {posargs} whitelist_externals = bash find