Replace ostestr with stestr in testing framework.

A system upgrade broke ostestr. We can fix it by just calling stestr
directly.

Change-Id: I98e4c96c4873580f4fbdf5350bd4abe5831971fc
This commit is contained in:
Pete Vander Giessen 2019-03-07 17:12:11 -05:00
parent 3bedb660d4
commit 3392d93c5f
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Lint and unit test requirements
flake8
os-testr>=0.4.1
stestr>=2.2.0
requests>=2.18.4
charms.reactive
mock>=1.2

View File

@ -35,12 +35,12 @@ commands = true
[testenv:py35]
basepython = python3.5
deps = -r{toxinidir}/test-requirements.txt
commands = ostestr {posargs}
commands = stestr run {posargs}
[testenv:py36]
basepython = python3.6
deps = -r{toxinidir}/test-requirements.txt
commands = ostestr {posargs}
commands = stestr run {posargs}
[testenv:pep8]
basepython = python3