diff --git a/.gitignore b/.gitignore index dc4cfac..d4d16c7 100644 --- a/.gitignore +++ b/.gitignore @@ -22,8 +22,7 @@ pip-log.txt .coverage cover .tox -nosetests.xml -.testrepository +.stestr/ # Developer .project diff --git a/.stestr.conf b/.stestr.conf new file mode 100644 index 0000000..dcdf16e --- /dev/null +++ b/.stestr.conf @@ -0,0 +1,4 @@ +[DEFAULT] +test_path=./tests +top_dir=./ + diff --git a/.testr.conf b/.testr.conf deleted file mode 100644 index 6d83b3c..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 ./ . $LISTOPT $IDOPTION -test_id_option=--load-list $IDFILE -test_list_option=--list diff --git a/requirements.txt b/requirements.txt index 21c4ae0..4806598 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ pbr!=2.1.0,>=2.0.0 # Apache-2.0 aodhclient>=0.9.0 # Apache-2.0 gnocchiclient>=3.3.1 # Apache-2.0 -python-barbicanclient!=4.5.0,!=4.5.1,>=4.0.0 # Apache-2.0 +python-barbicanclient>=4.5.2 # Apache-2.0 python-congressclient<2000,>=1.3.0 # Apache-2.0 python-designateclient>=2.7.0 # Apache-2.0 python-heatclient>=1.10.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index ad55aa7..890b469 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -5,6 +5,7 @@ hacking<0.11,>=0.10.0 # this is required for the tests oslotest>=1.10.0 # Apache-2.0 +stestr>=2.0.0 # Apache-2.0 # this is required for the docs sphinx>=1.6.2 # BSD diff --git a/tox.ini b/tox.ini index 4889b81..7f87e2a 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = py35,py27,pep8 [testenv] deps = -r{toxinidir}/test-requirements.txt -commands = python setup.py testr --slowest --testr-args='{posargs}' +commands = stestr run --slowest {posargs} [testenv:pep8] deps=-r{toxinidir}/test-requirements.txt