Merge "fix tox python3 overrides"

This commit is contained in:
Zuul 2018-10-15 14:40:09 +00:00 committed by Gerrit Code Review
commit da2be054b4
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@ setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt deps = -r{toxinidir}/test-requirements.txt
[testenv:linters] [testenv:linters]
basepython = python3
# ignore below cases # ignore below cases
# E006 Line too long # E006 Line too long
# E010: Do not on same line as it commands # E010: Do not on same line as it commands
@ -31,6 +32,7 @@ commands =
-print0 | xargs -0 yamllint" -print0 | xargs -0 yamllint"
[testenv:pep8] [testenv:pep8]
basepython = python3
usedevelop = False usedevelop = False
skip_install = True skip_install = True
deps = deps =
@ -39,4 +41,5 @@ commands =
pep8 pep8
[testenv:venv] [testenv:venv]
basepython = python3
commands = {posargs} commands = {posargs}