From 6013b3faa5db264c9a52db2c41b1291b499ec90a Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 29 Sep 2021 18:14:06 +0900 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: Iee04a22940f5ee14f43947f562cbca9070d8defb Co-Authored-By: tushargite96 --- puppet-{{cookiecutter.project_name}}/tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/puppet-{{cookiecutter.project_name}}/tox.ini b/puppet-{{cookiecutter.project_name}}/tox.ini index 90eea2e..5bf76d2 100644 --- a/puppet-{{cookiecutter.project_name}}/tox.ini +++ b/puppet-{{cookiecutter.project_name}}/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