Fix passenv for tox4
Space seperated list for passenv is no longer acceptable in tox4. This change fixes the formatting of the passenv list as per this new standard. Change-Id: Iec6683ef865b74f86eae34f2bb969b8384ccfbca
This commit is contained in:
parent
703bdbe56f
commit
2becf4b0f1
8
tox.ini
8
tox.ini
@ -9,7 +9,13 @@ basepython = python3
|
|||||||
usedevelop = True
|
usedevelop = True
|
||||||
setenv =
|
setenv =
|
||||||
PYTHONWARNINGS=default::DeprecationWarning
|
PYTHONWARNINGS=default::DeprecationWarning
|
||||||
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
passenv =
|
||||||
|
http_proxy
|
||||||
|
HTTP_PROXY
|
||||||
|
https_proxy
|
||||||
|
HTTPS_PROXY
|
||||||
|
no_proxy
|
||||||
|
NO_PROXY
|
||||||
deps =
|
deps =
|
||||||
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
|
Loading…
x
Reference in New Issue
Block a user