From: Takashi Kajinami Date: Wed, 29 Sep 2021 08:58:57 +0000 (+0900) Subject: Stop configuring install_command in tox. X-Git-Tag: 19.4.0~3^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=dad345e872ebab4b76055ce72644ddf852f7b65d;p=puppet-modules%2Fpuppet-ceilometer.git 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: Ibb01a28bc7369b18416354c8aa363780f7841094 Co-Authored-By: tushargite96 --- diff --git a/tox.ini b/tox.ini index 90eea2e..5bf76d2 100644 --- a/tox.ini +++ b/tox.ini @@ -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