Switch to stestr

* Replace .testr.conf by .stestr.conf for migration and update
  .gitignore and test-requirements.txt file accordingly
* Use py3 as the default runtime for tox
* The patch bumps min version of tox to 3.18.0 python in order to
  replace tox's whitelist_externals by allowlist_externals option
* Updated ostestr occurances to stestr`

Change-Id: Iacc4e5054deb6ef832085d131c933e48e418bf1b
This commit is contained in:
Anand Bhat 2021-08-20 12:20:52 +05:30 committed by Erik Olof Gunnar Andersson
parent f71166b2c6
commit 519e78ee84
5 changed files with 11 additions and 17 deletions

1
.gitignore vendored
View File

@ -13,7 +13,6 @@ __pycache__
.idea
.project
.pydevproject
.testrepository
.tox
.venv
.DS_Store

3
.stestr.conf Normal file
View File

@ -0,0 +1,3 @@
[DEFAULT]
test_path=./senlin_tempest_plugin/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

@ -6,8 +6,7 @@
coverage!=4.4,>=4.0 # Apache-2.0
hacking>=3.0.0,<3.1.0 # Apache-2.0
oslotest>=3.2.0 # Apache-2.0
os-testr>=1.0.0 # Apache-2.0
testrepository>=0.0.18 # Apache-2.0/BSD
stestr>=2.0.0 # Apache-2.0
testtools>=2.2.0 # MIT
# Documentation

14
tox.ini
View File

@ -1,6 +1,6 @@
[tox]
minversion = 3.1.1
envlist = py37,pep8,api,functional
minversion = 3.18.0
envlist = py3,pep8,api,functional
skipsdist = True
ignore_basepython_conflict = True
@ -12,9 +12,9 @@ deps =
usedevelop = True
commands =
find . -type f -name "*.py[c|o]" -delete
ostestr --slowest --regex 'senlin_tempest_plugin.tests.api.*' {posargs}
stestr run --slowest --test-path ./senlin_tempest_plugin/tests/api {posargs}
whitelist_externals = find
allowlist_externals = find
[testenv:api]
setenv = VIRTUAL_ENV={envdir}
@ -22,7 +22,7 @@ setenv = VIRTUAL_ENV={envdir}
OS_TEST_PATH=senlin_tempest_plugin/api
commands =
find . -type f -name "*.py[c|o]" -delete
ostestr --slowest --regex 'senlin_tempest_plugin.tests.api.*' {posargs}
stestr run --slowest --test-path ./senlin_tempest_plugin/tests/api {posargs}
[testenv:functional]
setenv = VIRTUAL_ENV={envdir}
@ -33,9 +33,9 @@ setenv = VIRTUAL_ENV={envdir}
# e.g.: 'tox -efunctional -- --concurrency=4'
commands =
find . -type f -name "*.py[c|o]" -delete
ostestr --slowest --regex 'senlin_tempest_plugin.tests.functional.*' {posargs}
stestr run --slowest --test-path ./senlin_tempest_plugin/tests/functional {posargs}
whitelist_externals = find
allowlist_externals = find
[testenv:pep8]
commands =