Skip to content

Commit 9cf8412

Browse files
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: I3d1a6253d829317be46bf3a9c3ad365af93f86a5 Co-Authored-By: tushargite96 <[email protected]>
1 parent 4dbc8ea commit 9cf8412

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ignore_basepython_conflict = True
66

77
[testenv]
88
basepython = python3
9-
install_command = pip install -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} {opts} {packages}
109

1110
[testenv:releasenotes]
12-
deps = -r{toxinidir}/doc/requirements.txt
11+
deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
12+
-r{toxinidir}/doc/requirements.txt
1313
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html

0 commit comments

Comments
 (0)