diff --git a/.gitignore b/.gitignore index bc9ce0a1e..2dcf3362d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,24 @@ -*~ -.testrepository -*.sw? *.pyc +*.qcow2 +elements/seed-stack-config/local.json + +# Unit test / coverage reports +.stestr .tox +.venv + +# Packages *.egg-info dist -*.qcow2 build + +# pbr generates these AUTHORS ChangeLog -elements/seed-stack-config/local.json + +# Editors +*.sw? +*~ # Files created by releasenotes build releasenotes/build diff --git a/.stestr.conf b/.stestr.conf new file mode 100644 index 000000000..c2c8a3a5b --- /dev/null +++ b/.stestr.conf @@ -0,0 +1,3 @@ +[DEFAULT] +test_path=./tests/ +top_dir=./ diff --git a/.testr.conf b/.testr.conf deleted file mode 100644 index e77dcc7f0..000000000 --- a/.testr.conf +++ /dev/null @@ -1,5 +0,0 @@ -[DEFAULT] -test_command=python -m subunit.run discover . $LISTOPT $IDOPTION -test_id_option=--load-list $IDFILE -test_list_option=--list - diff --git a/test-requirements.txt b/test-requirements.txt index d6511798d..380ffd347 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,5 +1,5 @@ hacking>=2.0.0 oslotest -testrepository>=0.0.18 +stestr>=2.0.0 # Apache-2.0 pyflakes>=2.2.0 diff --git a/tox.ini b/tox.ini index cd21ae2ba..51cb61825 100644 --- a/tox.ini +++ b/tox.ini @@ -11,8 +11,7 @@ deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt -commands= - python setup.py testr --slowest --testr-args='{posargs}' +commands = stestr run --slowest {posargs} [testenv:venv] commands = {posargs}