From b04b8cf6836236af2dee97c4c11808a945beef69 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 22 Apr 2016 08:23:07 +0200 Subject: [PATCH] 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 --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index a2fdcc1..7c48729 100644 --- a/tox.ini +++ b/tox.ini @@ -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]