fix tox python3 overrides
We want to default to running all tox environments under python 3, so set the basepython value in each environment. We do not want to specify a minor version number, because we do not want to have to update the file every time we upgrade python. We do not want to set the override once in testenv, because that breaks the more specific versions used in default environments like py35 and py36. Change-Id: I2a995f93b7e2a4a3ad40856773ce3ba7c6666720 Signed-off-by: Doug Hellmann <doug@doughellmann.com> Signed-off-by: Chuck Short <chucks@redhat.com> Depends-on: Ia7412f8ec97cae2e0c8eda84eb38822a110c1a65
This commit is contained in:
parent
48f9971b37
commit
665666c031
@ -37,7 +37,7 @@ class OvsdbAppException(RuntimeError):
|
||||
|
||||
if six.PY2:
|
||||
def __unicode__(self):
|
||||
return unicode(self.msg) # noqa
|
||||
return unicode(self.msg) # noqa pylint: disable=undefined-variable
|
||||
|
||||
def __str__(self):
|
||||
return self.msg
|
||||
|
7
tox.ini
7
tox.ini
@ -17,24 +17,29 @@ deps =
|
||||
commands = stestr run --slowest {posargs}
|
||||
|
||||
[testenv:pep8]
|
||||
basepython = python2.7
|
||||
basepython = python3
|
||||
commands = flake8
|
||||
{toxinidir}/tools/coding-checks.sh --pylint '{posargs}'
|
||||
|
||||
[testenv:venv]
|
||||
basepython = python3
|
||||
commands = {posargs}
|
||||
|
||||
[testenv:cover]
|
||||
basepython = python3
|
||||
commands = python setup.py test --coverage --testr-args='{posargs}'
|
||||
|
||||
[testenv:docs]
|
||||
basepython = python3
|
||||
commands = python setup.py build_sphinx
|
||||
|
||||
[testenv:releasenotes]
|
||||
basepython = python3
|
||||
commands =
|
||||
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
||||
|
||||
[testenv:debug]
|
||||
basepython = python3
|
||||
commands = oslo_debug_helper {posargs}
|
||||
|
||||
[testenv:functional]
|
||||
|
Loading…
x
Reference in New Issue
Block a user