diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | test-requirements.txt | 3 | ||||
| -rw-r--r-- | tox.ini | 5 |
3 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ /.* !.gitignore !.mailmap -!.testr.conf +!.stestr.conf .*.sw? subunit.log *,cover diff --git a/test-requirements.txt b/test-requirements.txt index 23f0ee2..e16fdd5 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -10,6 +10,5 @@ mock>=2.0.0 # BSD requests-mock>=1.2.0 # Apache-2.0 tempest>=17.1.0 # Apache-2.0 testtools>=2.2.0 # MIT -testrepository>=0.0.18 # Apache-2.0/BSD -os-testr>=1.0.0 # Apache-2.0 +stestr>=1.0.0 # Apache-2.0 oslo.serialization!=2.19.1,>=2.18.0 # Apache-2.0 @@ -20,7 +20,8 @@ deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = find . -type f -name "*.pyc" -delete - ostestr {posargs} + stestr run '{posargs}' + stestr slowest whitelist_externals = find [testenv:pep8] @@ -69,7 +70,7 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen [testenv:functional] basepython = python3 -commands = ostestr {posargs} +commands = stestr run '{posargs}' setenv = {[testenv]setenv} OS_TEST_PATH = ./cinderclient/tests/functional |
