From 8d49f913495d3440ba841ac68d39de14e0671f37 Mon Sep 17 00:00:00 2001 From: Vu Cong Tuan Date: Tue, 3 Jul 2018 13:28:31 +0700 Subject: [PATCH] Switch to stestr According to Openstack summit session [1], stestr is maintained project to which all Openstack projects should migrate. Let's switch to stestr as other projects have already moved to it. [1] https://etherpad.openstack.org/p/YVR-python-pti Change-Id: Id762418616487dfb0955675b7c50085b48307879 --- .gitignore | 3 +-- .stestr.conf | 3 +++ .testr.conf | 7 ------- lower-constraints.txt | 2 +- test-requirements.txt | 1 + tox.ini | 2 +- 6 files changed, 7 insertions(+), 11 deletions(-) create mode 100644 .stestr.conf delete mode 100644 .testr.conf diff --git a/.gitignore b/.gitignore index c1b4d16..b3fda12 100644 --- a/.gitignore +++ b/.gitignore @@ -26,8 +26,7 @@ pip-log.txt .coverage cover .tox -nosetests.xml -.testrepository +.stestr/ # Translations *.mo diff --git a/.stestr.conf b/.stestr.conf new file mode 100644 index 0000000..76a58e6 --- /dev/null +++ b/.stestr.conf @@ -0,0 +1,3 @@ +[DEFAULT] +test_path=./oslo_reports/tests +top_path=./ diff --git a/.testr.conf b/.testr.conf deleted file mode 100644 index bafdfe5..0000000 --- a/.testr.conf +++ /dev/null @@ -1,7 +0,0 @@ -[DEFAULT] -test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \ - OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \ - OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \ - ${PYTHON:-python} -m subunit.run discover -t ./ ./oslo_reports $LISTOPT $IDOPTION -test_id_option=--load-list $IDFILE -test_list_option=--list diff --git a/lower-constraints.txt b/lower-constraints.txt index 5cdb400..ed7a4ce 100644 --- a/lower-constraints.txt +++ b/lower-constraints.txt @@ -53,8 +53,8 @@ smmap==0.9.0 snowballstemmer==1.2.1 Sphinx==1.6.2 sphinxcontrib-websupport==1.0.1 +stestr==2.0.0 stevedore==1.20.0 -testrepository==0.0.18 testtools==2.2.0 traceback2==1.4.0 unittest2==1.1.0 diff --git a/test-requirements.txt b/test-requirements.txt index 029d9eb..26cd198 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -4,6 +4,7 @@ hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2.0 +stestr>=2.0.0 # Apache-2.0 # These are needed for docs generation openstackdocstheme>=1.18.1 # Apache-2.0 diff --git a/tox.ini b/tox.ini index 567df82..3b3ae05 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,7 @@ deps = -r{toxinidir}/test-requirements.txt -r{toxinidir}/requirements.txt install_command = pip install {opts} {packages} -commands = python setup.py testr --slowest --testr-args='{posargs}' +commands = stestr run --slowest {posargs} [testenv:py27] basepython = python2.7