fix pip install command

Apparently pip 10 dropped the options for allowing external and
insecure packages. We shouldn't need those anyway.

Change-Id: Ic8714c42f31a98020dfb70e65e9b2d9240fcf41b
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-05-15 11:09:07 -04:00
parent ce0b7597e0
commit de9e76f1c9
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} --allow-external lazr.authentication --allow-insecure lazr.authentication {packages}
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt