Fix periodic translation job

The venv environment is used by infra scripts to build tarballs and
documents and during translations.

The current install script uses zuul-cloner and that breaks the
translation sync, see
http://logs.openstack.org/periodic/trove-dashboard-propose-translation-update/e1aeeee

There's no need to install horizon here, use a normal install command.

Closes-Bug: #1573411
Change-Id: I2295638a3445299b8713fbd699ede31c94893674
This commit is contained in:
Andreas Jaeger 2016-04-22 08:23:07 +02:00
parent 537a450a2a
commit b04b8cf683

View File

@ -19,6 +19,8 @@ setenv = DJANGO_SETTINGS_MODULE=trove_dashboard.test.settings
commands = flake8
[testenv:venv]
# This target does not use script since we do not need to install horizon.
install_command = pip install -U --force-reinstall {opts} {packages}
commands = {posargs}
[testenv:py27dj17]