Tox allow install of lazr.authentication

The current tox would fail with an error because it didn't want
to install the lazr.authentication package because it's external.

This change makes it so that tox will allow the install of the
required lazr.authentication package.

Change-Id: I9b766df31f7662e36180188cc699e8665f5d317f
This commit is contained in:
Brant Knudson 2014-01-03 14:19:48 -06:00 committed by Jeremy Stanley
parent 435f1c0d86
commit bcef6ee2cb
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
install_command = pip install --allow-external lazr.authentication --allow-insecure lazr.authentication -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LANG=en_US.UTF-8