Merge "Use upper constraints for all jobs in tox.ini"

This commit is contained in:
Jenkins 2016-08-25 09:17:39 +00:00 committed by Gerrit Code Review
commit f7101be8ea

12
tox.ini
View File

@ -95,10 +95,6 @@ commands =
/bin/bash {toxinidir}/run_tests.sh --compilemessages -N
[testenv:venv]
# NOTE(from nova tox.ini by jaegerandi): This target does not use constraints
# because upstream infra does not yet support it. Once that's fixed, we can
# drop the install_command.
install_command = pip install -U --force-reinstall {opts} {packages}
commands = {posargs}
[testenv:manage]
@ -106,10 +102,6 @@ commands = {posargs}
commands = {envpython} {toxinidir}/manage.py {posargs}
[testenv:cover]
# NOTE(jaegerandi): This target does not use constraints
# because upstream infra does not yet support it. Once that's fixed, we can
# drop the install_command.
install_command = pip install -U --force-reinstall {opts} {packages}
commands =
coverage erase
coverage run {toxinidir}/manage.py test horizon --settings=horizon.test.settings {posargs}
@ -149,10 +141,6 @@ setenv = DJANGO_SETTINGS_MODULE=openstack_dashboard.test.settings
commands = {envpython} {toxinidir}/setup.py build_sphinx
[testenv:releasenotes]
# NOTE(from nova tox.ini by jaegerandi): This target does not use constraints
# because upstream infra does not yet support it. Once that's fixed, we can
# drop the install_command.
install_command = pip install -U --force-reinstall {opts} {packages}
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:runserver]