From e179d3680227728307dce7bb05dbbf0a8ab70274 Mon Sep 17 00:00:00 2001 From: Ryan Beisner Date: Mon, 2 Apr 2018 20:30:35 +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: I06e5afd0bfb627b2de64e93e51c182cf881e38d7 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 365444d3..e5d01d8a 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ setenv = VIRTUAL_ENV={envdir} CHARM_DIR={envdir} AMULET_SETUP_TIMEOUT=5400 install_command = - pip install --allow-unverified python-apt {opts} {packages} + pip install {opts} {packages} commands = ostestr {posargs} whitelist_externals = juju passenv = HOME TERM AMULET_* CS_API_*