Use stestr instead of testr

Change-Id: I29f32edc2d84f6dde3c405bedacb41bd40f806a5
This commit is contained in:
Bob.Haddleton 2018-06-10 20:05:21 -05:00 committed by Bob Haddleton
parent 3eb67e755d
commit 803b2a80d8
6 changed files with 16 additions and 11 deletions

4
.gitignore vendored
View File

@ -23,8 +23,10 @@ pip-log.txt
# Unit test / coverage reports
.coverage
cover
.tox
nosetests.xml
.stestr/
.testrepository
# Translations
@ -53,4 +55,4 @@ ChangeLog
*.iml
# OSX
.DS_Store
.DS_Store

4
.stestr.conf Normal file
View File

@ -0,0 +1,4 @@
[DEFAULT]
test_path=./toscaparser/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 @@ six==1.10.0
snowballstemmer==1.2.1
Sphinx==1.6.5
sphinxcontrib-websupport==1.0.1
stestr==2.0.0
stevedore==1.20.0
testrepository==0.0.18
testscenarios==0.4

View File

@ -6,6 +6,6 @@ coverage!=4.4,>=4.0 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD
oslotest>=3.2.0 # Apache-2.0
python-subunit>=1.0.0 # Apache-2.0/BSD
testrepository>=0.0.18 # Apache-2.0/BSD
stestr>=2.0.0 # Apache-2.0
testscenarios>=0.4 # Apache-2.0/BSD
testtools>=2.2.0 # MIT

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 --slowest '{posargs}'
[testenv:pep8]
basepython = python3
@ -26,7 +26,12 @@ commands = {posargs}
[testenv:cover]
basepython = python3
commands = python setup.py test --coverage --coverage-package-name=toscaparser --testr-args='{posargs}'
setenv =
PYTHON=coverage run --source $project --parallel-mode
commands = stestr run '{posargs}'
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
[testenv:docs]
basepython = python3