From 3c86e57d16dfaa7f240807bc280f80b7db9484dd Mon Sep 17 00:00:00 2001 From: Ryan Beisner Date: Wed, 9 May 2018 10:54:28 -0500 Subject: [PATCH] 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b7fb04b..f196489 100644 --- a/tox.ini +++ b/tox.ini @@ -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]