Merge "fix tox python3 overrides"

This commit is contained in:
Zuul 2018-08-23 16:41:42 +00:00 committed by Gerrit Code Review
commit 5c14460e73
2 changed files with 7 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class OvsdbAppException(RuntimeError):
if six.PY2: if six.PY2:
def __unicode__(self): def __unicode__(self):
return unicode(self.msg) # noqa return unicode(self.msg) # noqa pylint: disable=undefined-variable
def __str__(self): def __str__(self):
return self.msg return self.msg

View File

@ -17,24 +17,29 @@ deps =
commands = stestr run --slowest {posargs} commands = stestr run --slowest {posargs}
[testenv:pep8] [testenv:pep8]
basepython = python2.7 basepython = python3
commands = flake8 commands = flake8
{toxinidir}/tools/coding-checks.sh --all '{posargs}' {toxinidir}/tools/coding-checks.sh --all '{posargs}'
[testenv:venv] [testenv:venv]
basepython = python3
commands = {posargs} commands = {posargs}
[testenv:cover] [testenv:cover]
basepython = python3
commands = python setup.py test --coverage --testr-args='{posargs}' commands = python setup.py test --coverage --testr-args='{posargs}'
[testenv:docs] [testenv:docs]
basepython = python3
commands = python setup.py build_sphinx commands = python setup.py build_sphinx
[testenv:releasenotes] [testenv:releasenotes]
basepython = python3
commands = commands =
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:debug] [testenv:debug]
basepython = python3
commands = oslo_debug_helper {posargs} commands = oslo_debug_helper {posargs}
[testenv:functional] [testenv:functional]