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: Idd3d92657a7c17370afc0d0c35cc4666025ab9d6
This commit is contained in:
Daniel Bengtsson 2019-11-15 10:18:38 +01:00
parent 4767d9de22
commit 1f9fe0319b
1 changed files with 1 additions and 3 deletions

View File

@ -5,9 +5,7 @@ skipsdist = True
[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
OS_STDOUT_NOCAPTURE=False
setenv = OS_STDOUT_NOCAPTURE=False
OS_STDERR_NOCAPTURE=False
deps =