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: Ibc9be2d0905aae99f79092de6cae17c61672d46c
This commit is contained in:
Ryan Beisner 2018-04-02 20:34:14 +00:00
parent 6d99d65b70
commit 0b52fc6955
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ whitelist_externals = juju
passenv = HOME TERM AMULET_* CS_API_*
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