Switch to using stestr

Depends-On: https://review.openstack.org/#/c/585960/
Change-Id: I290e3eb9c6f7eebf785e58a5b00f09198f7783a7
This commit is contained in:
zhurong 2018-07-26 12:04:08 +08:00
parent a8de1b9671
commit 6e13d60c57
6 changed files with 10 additions and 9 deletions

5
.gitignore vendored
View File

@ -56,4 +56,7 @@ ChangeLog
.*sw?
# Files created by releasenotes build
releasenotes/build
releasenotes/build
!/.stestr.conf
.stestr/

3
.stestr.conf Normal file
View File

@ -0,0 +1,3 @@
[DEFAULT]
test_path=${OS_TEST_PATH:-./muranopkgcheck/tests}
top_dir=./

View File

@ -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 ./ . $LISTOPT $IDOPTION
test_id_option=--load-list $IDFILE
test_list_option=--list

View File

@ -40,6 +40,7 @@ snowballstemmer==1.2.1
Sphinx==1.6.5
sphinxcontrib-websupport==1.0.1
stevedore==1.20.0
stestr==1.0.0
testrepository==0.0.18
testscenarios==0.4
testtools==2.2.0

View File

@ -12,6 +12,7 @@ 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
stestr>=1.0.0 # Apache-2.0
# releasenotes
reno>=2.5.0 # Apache-2.0

View File

@ -14,7 +14,7 @@ deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py test --slowest --testr-args='{posargs}'
commands = stestr run {posargs}
[testenv:pep8]
basepython = python3