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: I5d1cbb2bc2c092bebe06987d6e39491c621a0653
This commit is contained in:
Daniel Bengtsson 2019-11-15 15:36:39 +01:00
parent 7e95f32e34
commit 43f6759ab5
1 changed files with 0 additions and 1 deletions

View File

@ -6,7 +6,6 @@ skipsdist = True
[testenv]
usedevelop = True
passenv = TRACE_FAILONLY
install_command = pip install {opts} {packages}
setenv =
PYTHONWARNINGS=default::DeprecationWarning
OS_LOG_CAPTURE={env:OS_LOG_CAPTURE:true}