From 3b97e40e3b0c58f29b11c6caf1fbb71f5942159d Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 4 Oct 2018 12:13:54 +0200 Subject: [PATCH] Update tox to remove deprecated pip option The job --allow-unverified is obsolete, also python-apt cannot be installed and is unneeded for current jobs. Remove so that python installation works. Change-Id: I41e6d91bc9ca0c40e29f05ba1eabfb87523f725d --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ad01c9b..c11c8ec 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:py34]