From 46b3ef1b49fab156d684eb17fc57534647884e01 Mon Sep 17 00:00:00 2001 From: chenke Date: Mon, 17 Jun 2019 22:05:25 +0800 Subject: [PATCH] Switch to the new canonical constraints URL on master Reference: 1. http://lists.openstack.org/pipermail/openstack-discuss/2019-May/006478.html Change-Id: I2deeb59540a86be6c89a19dc2f944a1903b428f0 --- tox.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 2206ceb..d60d33c 100644 --- a/tox.ini +++ b/tox.ini @@ -5,14 +5,15 @@ skipsdist = True [testenv] usedevelop = True -install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} {opts} {packages} +install_command = pip install {opts} {packages} setenv = VIRTUAL_ENV={envdir} PYTHONWARNINGS=default::DeprecationWarning OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=60 -deps = -r{toxinidir}/test-requirements.txt +deps = -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} + -r{toxinidir}/test-requirements.txt commands = stestr run {posargs} [testenv:pep8]