Stop configuring 'install_command'

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: I591475707205732e68e3e68231c417acf672277b
This commit is contained in:
Daniel Bengtsson 2019-11-13 14:36:55 +01:00 committed by Stephen Finucane
parent dabf93f528
commit c3d9c9fc71
1 changed files with 0 additions and 2 deletions

View File

@ -5,9 +5,7 @@ skipsdist = True
[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
PYTHONWARNINGS=default::DeprecationWarning
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1