Update tox.ini to stop using unverified package

As of pip 10.0, --allow-unverified is not permitted.

Use of the flag in this repo was previously used to force
installation of python-apt to accommodate certain unit tests.

The unverified package, python-apt, is no longer necessary
for test execution.

Change-Id: I3bb8af99cd8303c105f85a4712ca0b057994ef7d
Related-Bug: #1760720
This commit is contained in:
Ryan Beisner 2018-05-09 10:54:28 -05:00
parent 4949dc2412
commit 3c86e57d16
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ skip_missing_interpreters = True
setenv = VIRTUAL_ENV={envdir}
PYTHONHASHSEED=0
install_command =
pip install --allow-unverified python-apt {opts} {packages}
pip install {opts} {packages}
commands = ostestr {posargs}
[testenv:py27]