From 85e2ad02e5c89378721348c55f2eab7906eac7c7 Mon Sep 17 00:00:00 2001 From: Hiroyuki JO Date: Tue, 9 Jul 2019 13:36:23 +0900 Subject: [PATCH] Fix broken URL of upper-contraints.tx in tox.ini Current URL returns 404 and fix it to correct URL announced in below: http://lists.openstack.org/pipermail/openstack-discuss/2019-May/006478.html Change-Id: I0e940e81d319a8d45fecb391e6e5a37fd9387bf6 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 84a4b0ef..50d5c247 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ setenv = PYTHONWARNINGS=default::DeprecationWarning passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY deps = - -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/plain/upper-constraints.txt} + -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = python setup.py test --slowest --testr-args='{posargs}'