From 95d76dffc5e7040bd32aaa3215f04f8f5f678c3b Mon Sep 17 00:00:00 2001 From: Ryan Beisner Date: Mon, 2 Apr 2018 20:29:52 +0000 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. Related-Bug: #1760720 Change-Id: I9320820838085b34e3958eca262c5281157a3c93 --- src/tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tox.ini b/src/tox.ini index 423f65f..245def4 100644 --- a/src/tox.ini +++ b/src/tox.ini @@ -13,7 +13,7 @@ whitelist_externals = juju passenv = HOME TERM AMULET_* CS_API_URL deps = -r{toxinidir}/test-requirements.txt install_command = - pip install --allow-unverified python-apt {opts} {packages} + pip install {opts} {packages} [testenv:pep8] basepython = python2.7