From f0c992f5c088054196389ab12599e52ec5970d3a Mon Sep 17 00:00:00 2001 From: Daniel Bengtsson Date: Thu, 14 Nov 2019 15:05:29 +0100 Subject: [PATCH] Stop configuring install_command in tox. Currently, we are overriding 'install_command' to use 'pip'. This is considered poor behavior and 'python -m pip' should be used instead: https://snarky.ca/why-you-should-use-python-m-pip/ It turns out that this is the the default value provided by tox: https://tox.readthedocs.io/en/latest/config.html#conf-install_command So we can remove the line and simply use the default value. Change-Id: Ibcdd3a9f7e7ea421e906cf1d96f95b516008b5d7 --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index 87b9cce8..2f18785b 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,6 @@ distribute = False envlist = py27,py37,pep8 [testenv] -install_command = pip install {opts} {packages} whitelist_externals = find setenv =