From 2c43d65238063eeaf54e9ae4b0e1c8463c9cbe0e Mon Sep 17 00:00:00 2001
From: tushargite96 <tushargite96@gmail.com>
Date: Wed, 3 Feb 2021 21:59:28 +0530
Subject: [PATCH] Stop configuring install_command in tox.

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: I7a703e0ee91b73b7ab736712756caaba6981f8e4
---
 tox.ini | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tox.ini b/tox.ini
index bd8a2c629..fcf35415e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,7 +11,6 @@ ignore_basepython_conflict=true
 [testenv]
 basepython = python3
 usedevelop = True
-install_command = pip install {opts} {packages}
 setenv =
     VIRTUAL_ENV={envdir}
     OS_TEST_PATH=./cinderclient/tests/unit