Merge "fix tox python3 overrides"

This commit is contained in:
Zuul 2019-01-29 14:09:53 +00:00 committed by Gerrit Code Review
commit 78e7b3c407

View File

@ -13,21 +13,27 @@ deps = -r{toxinidir}/requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs} tests.unit' commands = python setup.py testr --slowest --testr-args='{posargs} tests.unit'
[testenv:functional] [testenv:functional]
basepython = python3
commands = python setup.py testr --slowest --testr-args='{posargs} tests.functional' commands = python setup.py testr --slowest --testr-args='{posargs} tests.functional'
[testenv:queries] [testenv:queries]
basepython = python3
commands = python setup.py testr --slowest --testr-args='{posargs} tests.functional.test_queries' commands = python setup.py testr --slowest --testr-args='{posargs} tests.functional.test_queries'
[testenv:pep8] [testenv:pep8]
basepython = python3
commands = flake8 commands = flake8
[testenv:venv] [testenv:venv]
basepython = python3
commands = {posargs} commands = {posargs}
[testenv:cover] [testenv:cover]
basepython = python3
commands = python setup.py test --coverage --coverage-package-name='elastic_recheck' --testr-args='{posargs} tests.unit' commands = python setup.py test --coverage --coverage-package-name='elastic_recheck' --testr-args='{posargs} tests.unit'
[testenv:run] [testenv:run]
basepython = python3
# test to run the bot as a non voting foreground process # test to run the bot as a non voting foreground process
commands = elastic-recheck -f -n --noirc elasticRecheck.conf commands = elastic-recheck -f -n --noirc elasticRecheck.conf
@ -40,10 +46,12 @@ ignore = E123,E125,H233
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
[testenv:docs] [testenv:docs]
basepython = python3
deps = -r{toxinidir}/doc/requirements.txt deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -b html -W doc/source doc/build/html commands = sphinx-build -b html -W doc/source doc/build/html
[testenv:bindep] [testenv:bindep]
basepython = python3
# Do not install any requirements. We want this to be fast and work even if # Do not install any requirements. We want this to be fast and work even if
# system dependencies are missing, since it's used to tell you what system # system dependencies are missing, since it's used to tell you what system
# dependencies are missing! This also means that bindep must be installed # dependencies are missing! This also means that bindep must be installed