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: I7e0c9360c31293ff5e2f3deb9f94b57f089a6cdc
Co-Authored-By: tushargite96 <tushargite96@gmail.com>
This commit is contained in:
Takashi Kajinami 2021-09-29 18:18:19 +09:00
parent fa7a85b3fa
commit c98147b933
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ ignore_basepython_conflict = True
[testenv]
basepython = python3
install_command = pip install -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} {opts} {packages}
[testenv:releasenotes]
deps = -r{toxinidir}/doc/requirements.txt
deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html